/** * Copyright (c) 2021-2025 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Mandar Deshpande * @author Sebastian Bittrich * @author Alexander Rose * @author David Sehnal */ import { ColorTheme } from '../../../../mol-theme/color.js'; import { ThemeDataContext } from '../../../../mol-theme/theme.js'; import { ParamDefinition as PD } from '../../../../mol-util/param-definition.js'; export declare function getPLDDTConfidenceColorThemeParams(ctx: ThemeDataContext): { metricId: PD.Select | PD.Select; }; export type PLDDTConfidenceColorThemeParams = ReturnType; export declare function PLDDTConfidenceColorTheme(ctx: ThemeDataContext, props: PD.Values): ColorTheme; export declare const PLDDTConfidenceColorThemeProvider: ColorTheme.Provider;