import React from 'react';
import type { InputColorProps } from './types';
export declare const ColorPicker: React.LazyExoticComponent<typeof import("./ColorPicker").ColorControl>;
interface ColorControlState {
    open: boolean;
}
export default class InputColorControl extends React.PureComponent<InputColorProps, ColorControlState> {
    static defaultProps: Partial<InputColorProps>;
    state: ColorControlState;
    render(): JSX.Element;
}
export declare class ColorControlRenderer extends InputColorControl {
}
export {};
