export default class ColorPickerConverterHex extends React.PureComponent { static propTypes: { current: PropTypes.Validator; onChange: PropTypes.Validator<(...args: any[]) => any>; placeholder: PropTypes.Requireable; }; constructor(props: any); constructor(props: any, context: any); state: { hex: any; inFocus: boolean; }; render(): React.JSX.Element; UNSAFE_componentWillReceiveProps(props: any): void; change: ({ target: { value } }: { target: { value: any; }; }) => void; handleOnFocus: () => void; handleOnBlur: () => void; handleKeyDown: (event: any) => void; } import React from 'react'; import PropTypes from 'prop-types'; //# sourceMappingURL=ColorPickerConverterHex.d.ts.map