import { FC } from 'react'; import { Style } from 'inlines'; import { COLOR_FORMAT } from './utils.js'; type ColorPickerProps = { value?: string; style?: Style; onChange?: (color: string) => void; colorFormat?: COLOR_FORMAT; setColorFormat?: (colorFormat: COLOR_FORMAT) => void; }; export declare const ColorPicker: FC; export {};