import { default as React } from 'react';
interface IProps {
    value: string;
    onChange: (color: string) => void;
    onChangeComplete?: (color: string) => void;
}
declare const ColorPicker: React.FC<IProps>;
export default ColorPicker;
