import * as React from 'react';

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): React.JSX.Element;

export { ColorPicker, type ColorPickerProps };
