import { EditableInputElementService, IEditableInlineEditor } from "../editable-input-element-service";
import "./editable-inline-textarea.css";
import { IMultiLineStringConfiguration } from "../../../services/formSchema/form-schema-service";
import { BrowserService } from "../../../services/browser-service";
export declare class EditableInlineTextArea implements IEditableInlineEditor {
    private editableInputElementService;
    private browserService;
    constructor(editableInputElementService: EditableInputElementService, browserService: BrowserService);
    private textbox;
    classEx: string | null;
    private encode;
    bind(): void;
    show(element: JQuery, config: IMultiLineStringConfiguration, currentValue: any, onKeyPress: any, onSave: any): void;
    hide(): void;
    readonly value: any;
    readonly maxLength: number;
    detached(): void;
    attached(): void;
}
