export default ColorPicker;
declare class ColorPicker extends React.Component<any, any, any> {
    static propTypes: {
        valueType: PropTypes.Requireable<string>;
    };
    static defaultProps: {
        valueType: string;
    };
    constructor(props: any);
    constructor(props: any, context: any);
    handlers: {
        onChange: (color: any) => void;
    };
    getBackgroundColor: (color: any) => string;
}
import React from "react";
import PropTypes from "prop-types";
