import React from 'react'; import { type CurrentPathFrame } from '../../ProfileFlameGraph/FlameGraphArrow/utils'; import { type ProfileSource } from '../../ProfileSource'; import { FlamegraphData } from '../../ProfileView/types/visualization'; interface CalleesSectionProps { calleesRef: React.RefObject; calleesFlamegraphData: FlamegraphData; profileSource: ProfileSource; curPathArrow: CurrentPathFrame[]; setCurPathArrow: (path: CurrentPathFrame[]) => void; metadataMappingFiles?: string[]; } export declare function CalleesSection({ calleesRef, calleesFlamegraphData, profileSource, curPathArrow, setCurPathArrow, }: CalleesSectionProps): JSX.Element; export {}; //# sourceMappingURL=CalleesSection.d.ts.map