import type { GraphQLClient } from 'graphql-request'; export interface TimelineEvent { name: string; action: string; digest: string; group: string; level: number; duration: number; childDuration: number; allocationCount: number; childAllocationCount: number; count: number; time: number; end: number; wrapping: boolean; payload?: { name?: string; body?: string; }; } export interface PerformanceIncidentSampleTimeline { sampleId: string; timeline: TimelineEvent[]; } export declare function getPerformanceIncidentSampleTimeline(graphqlClient: GraphQLClient, appId: string, incidentNumber: string): Promise; //# sourceMappingURL=performance-incident-sample-timeline.d.ts.map