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