/** * Copyright (c) 2021-2025 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose * @author Adam Midlik */ import type { ColorTheme } from '../color.js'; import { ParamDefinition as PD } from '../../mol-util/param-definition.js'; import { ThemeDataContext } from '../../mol-theme/theme.js'; export declare const EntityIdColorThemeParams: { overrideWater: PD.BooleanParam; waterColor: PD.Color; palette: PD.Mapped, "generate"> | PD.NamedParams, "colors">>; }; export type EntityIdColorThemeParams = typeof EntityIdColorThemeParams; export declare function getEntityIdColorThemeParams(ctx: ThemeDataContext): { overrideWater: PD.BooleanParam; waterColor: PD.Color; palette: PD.Mapped, "generate"> | PD.NamedParams, "colors">>; }; export declare function EntityIdColorTheme(ctx: ThemeDataContext, props: PD.Values): ColorTheme; export declare const EntityIdColorThemeProvider: ColorTheme.Provider;