/** * Copyright (c) 2019-2024 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose */ import { SecondaryStructure } from '../../mol-model/structure/model/properties/secondary-structure.js'; import { ParamDefinition as PD } from '../../mol-util/param-definition.js'; import { CustomStructureProperty } from '../common/custom-structure-property.js'; export declare const SecondaryStructureParams: { type: PD.Mapped, "auto"> | PD.NamedParams, "model"> | PD.NamedParams, "dssp"> | PD.NamedParams, "zhang-skolnick">>; }; export type SecondaryStructureParams = typeof SecondaryStructureParams; export type SecondaryStructureProps = PD.Values; /** Maps `unit.id` to `SecondaryStructure` */ export type SecondaryStructureValue = Map; export declare const SecondaryStructureProvider: CustomStructureProperty.Provider;