import { ReactElement } from 'react';
import { TextInputValidatorProps } from '../../utils/textValidator';
import { GridBaseRow } from '../Grid';
import { CellEditorCommon } from '../GridCell';
export interface GridFormTextAreaProps<TData extends GridBaseRow> extends TextInputValidatorProps<TData>, CellEditorCommon {
    placeholder?: string;
    width?: string | number;
    onSave?: (props: {
        selectedRows: TData[];
        value: string;
    }) => Promise<boolean>;
    helpText?: string;
}
export declare const GridFormTextArea: <TData extends GridBaseRow>(props: GridFormTextAreaProps<TData>) => ReactElement;
