// Type definitions for @dyna-grid/core v1.1.4 // Project: // Definitions by: zhangkun <> import { DyAbstractInputField, IInputField } from "./dyAbstractInputField"; export declare class DyInputTextArea extends DyAbstractInputField { constructor(config?: IInputField); setValue(value: string, silent?: boolean): this; setCols(cols: number): this; setRows(rows: number): this; }