import React from 'react'; import { Editor, EditorProps } from '../types'; declare type Props = Pick, 'value' | 'column' | 'onBlur'>; export default class SimpleTextEditor extends React.Component implements Editor<{ [key: string]: string; }> { private readonly input; getInputNode(): HTMLInputElement | null; getValue(): { [x: string]: string; }; render(): JSX.Element; } export {};