/** * Copyright (c) 2024 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 '../theme.js'; export declare const FormalChargeColorThemeParams: { domain: PD.Interval; list: PD.ColorList; }; export type FormalChargeColorThemeParams = typeof FormalChargeColorThemeParams; export declare function getFormalChargeColorThemeParams(ctx: ThemeDataContext): { domain: PD.Interval; list: PD.ColorList; }; export declare function FormalChargeColorTheme(ctx: ThemeDataContext, props: PD.Values): ColorTheme; export declare const FormalChargeColorThemeProvider: ColorTheme.Provider;