export type ColorPickerProps = { value?: string; swatches?: string[]; onChange?: (value: string) => void; root?: Node; }; export type ColorPickerHandle = { setValue: (value?: string) => void; destroy: () => void; }; export declare function ColorPicker(props: ColorPickerProps): HTMLDivElement & ColorPickerHandle;