import React from 'react'; import { ValueEditorProps } from './ValueEditorBase'; export declare abstract class StringEditorBase extends React.PureComponent { _pendingValue: any; commitChange(value: string): void; onInputChange: (e: React.SyntheticEvent) => void; onValueChange: (value: string) => void; onBlur: () => void; onKeyDown: (e: React.KeyboardEvent) => void; }