//#region src/ColorPicker.d.ts
interface ColorPickerProps {
  value?: string;
  onChange(v: string): void;
  presets: Array<{
    id: string;
    label: string;
    value: string;
  }>;
  'aria-label'?: string;
  'aria-labelledby'?: string;
  className?: string;
}
declare function ColorPicker({ value, onChange, presets, className, ...aria }: ColorPickerProps): import("react").JSX.Element;
//#endregion
export { ColorPicker, ColorPickerProps };