///
import "./TextCellEditor.css";
import { GridColumnModel, GridRowModel } from "./Grid";
export interface TextCellEditorProps {
row?: GridRowModel;
column?: GridColumnModel;
}
export declare function TextCellEditor(props: TextCellEditorProps): JSX.Element;