/** * Copyright (c) 2019 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose * @author David Sehnal */ import { Color } from '../../mol-util/color/index.js'; import { ColorTheme } from '../../mol-theme/color.js'; import { ParamDefinition as PD } from '../../mol-util/param-definition.js'; import { ThemeDataContext } from '../../mol-theme/theme.js'; export declare function createProteopediaCustomTheme(colors: number[]): { name: string; label: string; category: string; factory: (ctx: ThemeDataContext, props: PD.Values<{ colors: PD.ObjectList>; }>) => ColorTheme<{ colors: PD.ObjectList>; }>; getParams: (ctx: ThemeDataContext) => { colors: PD.ObjectList>; }; defaultValues: PD.Values<{ colors: PD.ObjectList>; }>; isApplicable: (ctx: ThemeDataContext) => boolean; };