import { ConnectingEditor } from '../base/connectingEditor'; import { EditorSpec } from '../base/editor'; import { TextEditorServices } from './textEditor'; declare type InputElement = HTMLTextAreaElement | HTMLInputElement; export declare type InputTextEditor = ConnectingEditor; declare type InputTextEditorMapSpec = (spec: EditorSpec) => EditorSpec; export declare function createInputTextEditor(mapSpec: InputTextEditorMapSpec): InputTextEditor; export declare function createInputTextEditor(): InputTextEditor; export {};