import { Component } from "../component"; import { ComponentUpdateOptions } from "../type"; import ColorPicker from "../../colorpicker/colorpicker"; import { Instance } from "@popperjs/core"; export declare class ColorComponent extends Component { protected root: HTMLElement | null; currentColorDom?: HTMLElement; format: string; colorPicker?: ColorPicker; instance?: Instance; protected createElement(): void; protected listen(): void; protected updateBackgroundColor(color: string): void; update(data: ComponentUpdateOptions): void; showColorPicker(): void; hideColorPicker(): void; }