///
import "./DropdownCellEditor.css";
import { GridColumnModel, GridRowModel } from "./Grid";
export interface DropdownCellEditorProps {
options: string[];
row?: GridRowModel;
column?: GridColumnModel;
}
export declare function DropdownCellEditor(props: DropdownCellEditorProps): JSX.Element;