import * as React from 'react'; declare type Props = { value: string; onChange: (value: string) => void; trigger: (p: any) => React.ReactElement; }; declare type State = { value: string; editing: boolean; }; export declare class InputBox extends React.Component { constructor(props: Props); componentDidUpdate(prevProps: Props): void; render(): JSX.Element; } export {};