Let's say I build a structure with a protein and ligand component: ``` const model = builder .download({ url: "https://www.ebi.ac.uk/pdbe/entry-files/1cbs.bcif" }) .parse({ format: "bcif" }); const structure = model.modelStructure() // Create protein representation structure.component({ selector: "protein" }).representation().color({ color: "blue" }) // Create ligand representation structure.component({ selector: "ligand" }).representation().color({ color: "red" }) ``` Is there a way to build the components with their representations, but have the initial visibility of the ligand be hidden?