import { type ReactNode } from "react"; export interface CellEditorInfo { columnId: string; children: ReactNode; } export interface CellEditorProps { columnId?: string; children: ReactNode; } export declare function CellEditor(props: CellEditorProps): null;