import React from 'react'; import { type CurrentPathFrame } from '../../ProfileFlameGraph/FlameGraphArrow/utils'; import { type ProfileSource } from '../../ProfileSource'; import { FlamegraphData } from '../../ProfileView/types/visualization'; interface CallersSectionProps { callersRef: React.RefObject; callersFlamegraphData: FlamegraphData; profileSource: ProfileSource; curPathArrow: CurrentPathFrame[]; setCurPathArrow: (path: CurrentPathFrame[]) => void; isExpanded: boolean; setIsExpanded: (isExpanded: boolean) => void; defaultMaxFrames: number; } export declare function CallersSection({ callersRef, callersFlamegraphData, profileSource, curPathArrow, setCurPathArrow, isExpanded, setIsExpanded, defaultMaxFrames, }: CallersSectionProps): JSX.Element; export {}; //# sourceMappingURL=CallersSection.d.ts.map