import { default as React } from 'react'; import { NavigationDirection } from '../types'; export type CellSelectEditorProps = { value: any; options: { value: string; label: string; }[]; onCommit: (value: any) => void; onClose: () => void; onNavigate?: (direction: NavigationDirection) => void; onValueChange?: (value: any) => void; }; declare const CellSelectEditor: React.FC; export default CellSelectEditor; //# sourceMappingURL=CellSelectEditor.d.ts.map