export default class ColorPickerConverter extends React.PureComponent { static propTypes: { current: PropTypes.Validator; showConverter: PropTypes.Validator; showInput: PropTypes.Validator; onChange: PropTypes.Validator<(...args: any[]) => any>; onEnter: PropTypes.Validator<(...args: any[]) => any>; onAdd: PropTypes.Requireable<(...args: any[]) => any>; allowEmpty: PropTypes.Requireable; hexPlaceholder: PropTypes.Requireable; }; constructor(props: any); state: { activeTab: string; }; changeTab({ id }: { id: any; }): void; render(): React.JSX.Element | null; } import React from 'react'; import PropTypes from 'prop-types'; //# sourceMappingURL=ColorPickerConverter.d.ts.map