///
import { PureComponent } from 'react';
export interface Props {
autoFocus?: boolean;
defaultValue?: string;
onChange?: (value: string) => void;
onSubmit?: (value: string) => void;
onCancel?: () => void;
placeholder?: string;
}
export interface State {
value?: string;
}
export default class PanelTextInput extends PureComponent {
private input?;
constructor(props: any);
componentWillReceiveProps(props: Props): void;
render(): JSX.Element;
focus(): void;
private handleChange;
private handleKeydown;
private handleRef;
}