import React, { FocusEvent } from 'react'; import { Cell, WorksheetItem } from '../../types'; export type EditableCellOnKeyDown = (event: React.KeyboardEvent, newValue: unknown) => void; export declare const useEditableCell: (cell: Cell) => { handleBlur: (event?: FocusEvent, cell?: Cell) => void; handleChange: (newValue: unknown) => void; handleDoubleClick: () => void; handleKeyDown: EditableCellOnKeyDown; isEditing: boolean; }; //# sourceMappingURL=useEditableCell.d.ts.map