import { default as React } from 'react'; import { NavigationDirection } from '../types'; export type CellTextEditorProps = { type: "text" | "number" | "date"; initialValue: any; onCommit: (value: any) => void; onClose: () => void; onNavigate?: (direction: NavigationDirection) => void; onValueChange?: (value: any) => void; }; declare const CellTextEditor: React.FC; export default CellTextEditor; //# sourceMappingURL=CellTextEditor.d.ts.map