import { TextLikeInput, TextLikeInputView } from "./text_like_input"; import type * as p from "../../core/properties"; export declare class TextAreaInputView extends TextLikeInputView { model: TextAreaInput; input_el: HTMLTextAreaElement; connect_signals(): void; protected _render_input(): HTMLElement; render(): void; } export declare namespace TextAreaInput { type Attrs = p.AttrsOf; type Props = TextLikeInput.Props & { cols: p.Property; rows: p.Property; }; } export interface TextAreaInput extends TextAreaInput.Attrs { } export declare class TextAreaInput extends TextLikeInput { properties: TextAreaInput.Props; __view_type__: TextAreaInputView; constructor(attrs?: Partial); } //# sourceMappingURL=textarea_input.d.ts.map