import React from 'react'; declare type EditableLabelProps = { children?: React.ReactNode | null; value: string | number; onChange: (value: string) => any; }; declare type EditableLabelState = { editValue: string | null; edit: boolean; }; declare class EditableLabel extends React.Component { valueInput?: HTMLInputElement; static defaultProps: { children: null; }; constructor(props: any); componentDidUpdate(): void; render(): JSX.Element; } export default EditableLabel; //# sourceMappingURL=EditableLabel.d.ts.map