declare type ColorPickerProps = { color: string; onColorChange: (color: string) => void; disableAlpha?: boolean; disabled?: boolean; buttonMargin?: 'sm' | 'md' | 'lg' | 'off' | 'xxs' | 'xs' | 'xl' | 'xxl'; children?: JSX.Element | JSX.Element[]; }; export declare const ColorPicker: ({ color, onColorChange, disableAlpha, disabled, buttonMargin, children }: ColorPickerProps) => JSX.Element; export {};