import { BasePlugin } from 'amis-editor-core'; export declare class ColorControlPlugin extends BasePlugin { static id: string; static scene: string[]; rendererName: string; $schema: string; name: string; isBaseComponent: boolean; icon: string; pluginIcon: string; description: string; searchKeywords: string; docLink: string; tags: string[]; scaffold: { type: string; label: string; name: string; }; previewSchema: any; panelTitle: string; notRenderFormZone: boolean; panelJustify: boolean; getConditionalColorPanel(format: string): { label: string; name: string; type: string; format: string; clearable: boolean; visibleOn: string; presetColors: string[]; }; getConditionalColorComb(format: string): any; panelBodyCreator: (context: BaseEventContext) => any; }