import React from 'react'; import { Table } from '@uwdata/flechette'; import { ProfileType } from '@parca/parser'; interface GraphTooltipArrowContentProps { table: Table; profileType?: ProfileType; unit?: string; total: bigint; totalUnfiltered: bigint; row: number | null; isFixed: boolean; compareAbsolute: boolean; frozen?: boolean; } declare const GraphTooltipArrowContent: ({ table, profileType, unit, total, totalUnfiltered, row, isFixed, compareAbsolute, frozen, }: GraphTooltipArrowContentProps) => React.JSX.Element; export default GraphTooltipArrowContent; //# sourceMappingURL=Content.d.ts.map