import type { ChangeEventHandler, FocusEventHandler, KeyboardEventHandler } from 'react'; import React, { Component } from 'react'; interface Props { className: string; value: string; onChange: (caption: string) => void; setFocusToBlock: () => void; setInPluginEditingMode: (shouldEnable: boolean) => void; } declare class InPluginInput extends Component { static defaultProps: { setInPluginEditingMode: () => boolean; setFocusToBlock: () => boolean; }; handleFocus: FocusEventHandler; handleBlur: () => void; handleKeyPress: KeyboardEventHandler; onChange: ChangeEventHandler; render(): React.JSX.Element; } export default InPluginInput; //# sourceMappingURL=InPluginInput.d.ts.map