/** * Copyright (c) 2018-2025 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose * @author David Sehnal */ import { StructureElement, Bond } from '../mol-model/structure.js'; import { Loci } from '../mol-model/loci.js'; export type LabelGranularity = 'element' | 'conformation' | 'residue' | 'chain' | 'structure'; export declare const DefaultLabelOptions: { granularity: LabelGranularity; condensed: boolean; reverse: boolean; countsOnly: boolean; hidePrefix: boolean; htmlStyling: boolean; }; export type LabelOptions = typeof DefaultLabelOptions; export declare function lociLabel(loci: Loci, options?: Partial): string; export declare function structureElementStatsLabel(stats: StructureElement.Stats, options?: Partial): string; export declare function structureElementLociLabelMany(locis: StructureElement.Loci[], options?: Partial): string; export declare function bondLabel(bond: Bond.Location, options?: Partial): string; export declare function bundleLabel(bundle: Loci.Bundle, options?: Partial): string; export declare function _bundleLabel(bundle: Loci.Bundle, options: LabelOptions): string; export declare function elementLabel(location: StructureElement.Location, options?: Partial): string; export declare function distanceLabel(pair: Loci.Bundle<2>, options?: Partial): string; export declare function angleLabel(triple: Loci.Bundle<3>, options?: Partial): string; export declare function dihedralLabel(quad: Loci.Bundle<4>, options?: Partial): string;