/** * Copyright (c) 2023-2026 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Adam Midlik */ import { ComplexVisual } from '../../../../mol-repr/structure/complex-visual.js'; import { ParamDefinition as PD } from '../../../../mol-util/param-definition.js'; /** Parameter definition for "label-text" visual in "MVS Annotation Label" representation */ export type MVSAnnotationLabelTextParams = typeof MVSAnnotationLabelTextParams; export declare const MVSAnnotationLabelTextParams: { borderColor: { defaultValue: import("../../../../mol-util/color/index.js").Color; type: "color"; isExpanded?: boolean; isOptional?: boolean; label?: string; description?: string; legend?: import("../../../../mol-util/legend.js").Legend; fieldLabels?: { [name: string]: string; }; isHidden?: boolean; shortLabel?: boolean; twoColumns?: boolean; isEssential?: boolean; category?: string; hideIf?: (currentGroup: any) => boolean; help?: (value: any) => { description?: string; legend?: import("../../../../mol-util/legend.js").Legend; }; }; alpha: PD.Numeric; clip: PD.Group[]; }>>; backgroundColor: PD.Color; fontFamily: PD.Select; fontStyle: PD.Select; fontVariant: PD.Select; fontWeight: PD.Select; background: PD.BooleanParam; borderWidth: PD.Numeric; emissive: PD.Numeric; batchSize: PD.Numeric; material: PD.Group>; instanceGranularity: PD.BooleanParam; quality: PD.Select<"auto" | "medium" | "high" | "low" | "custom" | "highest" | "higher" | "lower" | "lowest">; density: PD.Numeric; lod: PD.Vec3; cellSize: PD.Numeric; sizeFactor: PD.Numeric; fontQuality: PD.Select; offsetX: PD.Numeric; offsetY: PD.Numeric; offsetZ: PD.Numeric; backgroundMargin: PD.Numeric; backgroundOpacity: PD.Numeric; tether: PD.BooleanParam; tetherLength: PD.Numeric; tetherBaseWidth: PD.Numeric; attachment: PD.Select<"bottom-left" | "bottom-center" | "bottom-right" | "middle-left" | "middle-center" | "middle-right" | "top-left" | "top-center" | "top-right">; ignoreHydrogens: PD.BooleanParam; ignoreHydrogensVariant: PD.Select<"all" | "non-polar">; includeParent: PD.BooleanParam; unitKinds: PD.MultiSelect<"spheres" | "gaussians" | "atomic">; annotationId: PD.Text; fieldName: PD.Text; textFormat: PD.Text; groupByFields: PD.ObjectList>; }; /** Parameter values for "label-text" visual in "MVS Annotation Label" representation */ export type MVSAnnotationLabelTextProps = PD.Values; /** Create "label-text" visual for "MVS Annotation Label" representation */ export declare function MVSAnnotationLabelTextVisual(materialId: number): ComplexVisual;