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