import * as React from 'react'; import * as Types from './types'; type Props = { DataEditor: Types.DataEditorComponent; setContextMenu: React.Dispatch>; attachmentAction?: { addAttachment: (file: File) => Promise; deleteAttachment: (fileId: string) => Promise; viewAttachment: (fileId: string, fileName: string) => Promise; }; contextOption?: { open: boolean; options: { label: string; value: string; iconName: string; action: () => void; disableTooltip: string; visible: boolean; disable: boolean; }[]; }; }; declare const ActiveCell: React.FC; export default ActiveCell;