import { CellEditorTextAreaProps } from './types'; import { EditingCellInfo, ObjectForExtending } from '../types'; import { default as React } from 'react'; export declare const CellEditorTextArea: React.ForwardRefExoticComponent & React.RefAttributes>; export declare function CellEditorTextAreaInternal({ row, column, initialValue, onRowChange, readOnly, cellHeight, cellWidth, disableLeftOffset, theme, contentAlign, }: EditingCellInfo & { disableLeftOffset: boolean | undefined; contentAlign?: 'left' | 'right' | 'center'; }): import("react/jsx-runtime").JSX.Element;