import { Table } from '@uwdata/flechette'; import { ProfileType } from '@parca/parser'; interface ContextMenuProps { menuId: string; table: Table; profileType?: ProfileType; unit?: string; total: bigint; totalUnfiltered: bigint; row: number; compareAbsolute: boolean; resetPath: () => void; hideMenu: () => void; hideBinary: (binaryToRemove: string) => void; isSandwich?: boolean; } declare const ContextMenu: ({ menuId, table, total, totalUnfiltered, row, compareAbsolute, hideMenu, profileType, unit, hideBinary, resetPath, isSandwich, }: ContextMenuProps) => JSX.Element; export default ContextMenu; //# sourceMappingURL=ContextMenu.d.ts.map