/** * Copyright (c) 2019 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose */ 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 EntitySourceColorThemeParams: { palette: PD.Mapped, "generate"> | PD.NamedParams, "colors">>; }; export type EntitySourceColorThemeParams = typeof EntitySourceColorThemeParams; export declare function getEntitySourceColorThemeParams(ctx: ThemeDataContext): { palette: PD.Mapped, "generate"> | PD.NamedParams, "colors">>; }; export declare function EntitySourceColorTheme(ctx: ThemeDataContext, props: PD.Values): ColorTheme; export declare const EntitySourceColorThemeProvider: ColorTheme.Provider;