import React from 'react';
export interface Props {
    disabled?: boolean;
    value: string;
    onChange: (newValue: any) => void;
}
declare const OnHexColorPicker: React.FC<Props>;
export default OnHexColorPicker;
