/** * Copyright (c) 2023-2024 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Adam Midlik */ import { CustomStructureProperty } from '../../../mol-model-props/common/custom-structure-property.js'; import { Loci } from '../../../mol-model/loci.js'; import { StructureElement } from '../../../mol-model/structure.js'; import { ParamDefinition as PD } from '../../../mol-util/param-definition.js'; import { ElementSet, Selector } from './selector.js'; /** Parameter definition for custom structure property "CustomTooltips" */ export type CustomTooltipsParams = typeof CustomTooltipsParams; export declare const CustomTooltipsParams: { tooltips: PD.ObjectList | PD.NamedParams | PD.NamedParams | PD.NamedParams | PD.NamedParams, "annotation">; }>>; }; /** Parameter values of custom structure property "CustomTooltips" */ export type CustomTooltipsProps = PD.Values; /** Values of custom structure property "CustomTooltips" (and for its params at the same type) */ export type CustomTooltipsData = { selector: Selector; text: string; elementSet?: ElementSet; }[]; /** Provider for custom structure property "CustomTooltips" */ export declare const CustomTooltipsProvider: CustomStructureProperty.Provider; /** Label provider based on custom structure property "CustomTooltips" */ export declare const CustomTooltipsLabelProvider: { label: (loci: Loci) => string | undefined; };