/** * Copyright (c) 2019 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose * @author David Sehnal */ import { ColorTheme } from 'molstar/lib/mol-theme/color'; import { ParamDefinition as PD } from 'molstar/lib/mol-util/param-definition'; import { ThemeDataContext } from 'molstar/lib/mol-theme/theme'; export declare const InteractionColorThemeParams: { type: any; }; declare type Params = typeof InteractionColorThemeParams; export declare function InteractionColorTheme(ctx: ThemeDataContext, props: PD.Values): ColorTheme; export declare const InteractionColorThemeProvider: ColorTheme.Provider; export {};