import { Table } from '@uwdata/flechette'; import { ProfileType } from '@parca/parser'; interface ContextMenuWrapperProps { menuId: string; table: Table; total: bigint; totalUnfiltered: bigint; profileType?: ProfileType; compareAbsolute: boolean; resetPath: () => void; hideMenu: () => void; hideBinary: (binaryToRemove: string) => void; unit?: string; isInSandwichView?: boolean; } export interface ContextMenuWrapperRef { setRow: (row: number, callback?: () => void) => void; } declare const ContextMenuWrapper: import("react").ForwardRefExoticComponent>; export default ContextMenuWrapper; //# sourceMappingURL=ContextMenuWrapper.d.ts.map