import { ReactElement } from 'react'; interface ColorPickerProps { color: string; onChange?: (color: string) => void; onClear?: () => void; /** * Preset color palette */ palette?: string[]; } export declare const ColorPicker: ({ color, onChange, onClear, palette }: ColorPickerProps) => ReactElement; export {}; //# sourceMappingURL=ColorPicker.d.ts.map