import * as React from "react";
export interface iProps {
    label?: string;
    value: string;
    onChange: (newValue: string) => void;
    required?: boolean;
    showValidationErrors?: boolean;
    underlined?: boolean;
    width?: number;
    buttonOnly?: boolean;
    placeholder?: string;
    disabled?: boolean;
    /** specify a specific mount node for this dialog */
    mountNode?: HTMLElement | null | {
        element?: HTMLElement | null;
        className?: string;
    };
}
export declare const ColorPickerEx: React.FunctionComponent<iProps>;
