import { PureComponent } from 'react';
export default class SketchFileds extends PureComponent<any> {
    state: {
        hexColor: any;
    };
    get styles(): any;
    confirmHexChange: (e: any) => void;
    handleHexChange: (data: any) => void;
    handleChange: (data: any, e: any) => void;
    static getDerivedStateFromProps(props: any, state: any): {
        preHex: any;
        hexColor: any;
    };
    render(): JSX.Element;
}
