/** * Copyright (c) 2021-2023 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose * @author David Sehnal */ import { Structure, StructureElement } from '../../mol-model/structure.js'; import { PluginContext } from '../../mol-plugin/context.js'; import { StructureComponentRef } from '../manager/structure/hierarchy-state.js'; import { EmptyLoci } from '../../mol-model/loci.js'; import { Material } from '../../mol-util/material.js'; export declare function setStructureSubstance(plugin: PluginContext, components: StructureComponentRef[], material: Material | undefined, lociGetter: (structure: Structure) => Promise, types?: string[]): Promise; export declare function clearStructureSubstance(plugin: PluginContext, components: StructureComponentRef[], types?: string[]): Promise;