///
import { EditorProps } from '@supabase/react-data-grid';
interface SelectEditorProps extends EditorProps {
options: {
label: string;
value: string;
}[];
}
export declare function SelectEditor({ row, column, onRowChange, onClose, options, }: SelectEditorProps): JSX.Element;
export {};