/// import { CancelableEditorBase } from './CancelableEditorBase'; import { IImageLayer, IPaintObject } from '../../../../../ImageViewer/Layers'; export declare class TextAreaEditor extends CancelableEditorBase { private _textArea; getEditorControls(): JSX.Element[]; onApply(): void; onCancel(): void; setControlsVisibility(isVisible: boolean): void; componentDidUpdate(): void; get originalNode(): IPaintObject; get viewer(): IImageLayer; protected isValueDirty(): boolean; private _onTextAreaInput; private _onChange; private get updatedTextAreaValue(); private set updatedTextAreaValue(value); }