/** * Copyright (c) 2018-2020 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose */ import { ParamDefinition as PD } from '../../../mol-util/param-definition.js'; import { ThemeDataContext } from '../../../mol-theme/theme.js'; import { ColorTheme } from '../../../mol-theme/color.js'; export declare const CrossLinkColorThemeParams: { domain: PD.Interval; list: PD.ColorList; }; export type CrossLinkColorThemeParams = typeof CrossLinkColorThemeParams; export declare function getCrossLinkColorThemeParams(ctx: ThemeDataContext): { domain: PD.Interval; list: PD.ColorList; }; export declare function CrossLinkColorTheme(ctx: ThemeDataContext, props: PD.Values): ColorTheme; export declare const CrossLinkColorThemeProvider: ColorTheme.Provider;