export default class BrEditableLabel extends PureComponent { static propTypes: { className: PropTypes.Requireable; placeholder: PropTypes.Requireable>; value: PropTypes.Requireable>; isInputStyle: PropTypes.Requireable; onSetLabel: PropTypes.Validator<(...args: any[]) => any>; }; static defaultProps: { suggestions: never[]; placeholder: string; }; constructor(props: any); state: { isEditing: boolean; tmpValue: any; currentValue: any; }; UNSAFE_componentWillReceiveProps(nextProps: any): void; handleConfirmChange: () => void; handleSetToLabel: () => void; handleBlur: (e: any) => void; handleReset: () => void; render(): JSX.Element; } import { PureComponent } from 'react'; import PropTypes from 'prop-types';