import { ReactElement } from 'react';
import { TextInputValidatorProps } from '../../utils/textValidator';
import { CellEditorCommon } from '../GridCell';
import { GridBaseRow } from '../types';
export interface GridSubComponentTextAreaProps<TData extends GridBaseRow> extends TextInputValidatorProps<TData>, CellEditorCommon {
    placeholder?: string;
    width?: string | number;
    defaultValue: string;
    className?: string;
    helpText?: string;
}
export declare const GridFormSubComponentTextArea: <TData extends GridBaseRow>(props: GridSubComponentTextAreaProps<TData>) => ReactElement;
