/** * Copyright (c) 2018-2020 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 ChainIdColorThemeParams: { palette: PD.Mapped, "generate"> | PD.NamedParams, "colors">>; asymId: PD.Select; }; export type ChainIdColorThemeParams = typeof ChainIdColorThemeParams; export declare function getChainIdColorThemeParams(ctx: ThemeDataContext): { palette: PD.Mapped, "generate"> | PD.NamedParams, "colors">>; asymId: PD.Select; }; type AsymIdType = 'auth' | 'label'; export declare function ChainIdColorTheme(ctx: ThemeDataContext, props: PD.Values): ColorTheme; export declare const ChainIdColorThemeProvider: ColorTheme.Provider; export {};