import 'react-contexify/dist/ReactContexify.css'; import { type Row } from '.'; import { type ColumnName } from './utils/functions'; interface TableContextMenuProps { menuId: string; row: Row | null; unit?: string; total?: bigint; totalUnfiltered?: bigint; columnVisibility?: Record; } declare const TableContextMenu: ({ menuId, row, unit, total, totalUnfiltered, columnVisibility, }: TableContextMenuProps) => React.JSX.Element; export default TableContextMenu; //# sourceMappingURL=TableContextMenu.d.ts.map