import * as React from 'react'; import * as Types from './types'; import * as Point from './point'; type Props = { DataEditor: Types.DataEditorComponent; setContextMenu: React.Dispatch>; getActiveCell: (cell: { value: string; active: Point.Point; }) => void; attachmentAction?: { addAttachment: (file: File) => Promise; deleteAttachment: (fileId: string) => Promise; viewAttachment: (fileId: string, fileName: string) => Promise; }; contextOption?: ContextMenuState; visibleRange: { start: number; end: number; }; }; declare const ActiveCell: React.FC; export default ActiveCell;