import type { AgComponentSelector, AgCoreBeanCollection, BaseEvents, BaseProperties, IPropertiesService } from 'ag-stack'; import { AgAbstractInputField } from './agAbstractInputField'; import type { AgInputFieldParams } from './agFieldParams'; import type { AgWidgetSelectorType } from './agWidgetSelectorType'; /** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */ export declare class AgInputTextArea, TProperties extends BaseProperties, TGlobalEvents extends BaseEvents, TCommon, TPropertiesService extends IPropertiesService, TComponentSelectorType extends string> extends AgAbstractInputField { constructor(config?: AgInputFieldParams); setValue(value: string, silent?: boolean): this; setCols(cols: number): this; setRows(rows: number): this; } /** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */ export declare const AgInputTextAreaSelector: AgComponentSelector;