/** * Copyright (c) 2019-2025 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose * @author Lukáš Polák */ import { Unit, ElementIndex } from '../../mol-model/structure.js'; import type { ColorTheme } from '../color.js'; import { ParamDefinition as PD } from '../../mol-util/param-definition.js'; import { ThemeDataContext } from '../theme.js'; export declare const UncertaintyColorThemeParams: { domain: PD.Interval; list: PD.ColorList; }; export type UncertaintyColorThemeParams = typeof UncertaintyColorThemeParams; export declare function getUncertaintyColorThemeParams(ctx: ThemeDataContext): { domain: PD.Interval; list: PD.ColorList; }; export declare function getUncertainty(unit: Unit, element: ElementIndex): number; export declare function UncertaintyColorTheme(ctx: ThemeDataContext, props: PD.Values): ColorTheme; export declare const UncertaintyColorThemeProvider: ColorTheme.Provider;