import type { GraphQLClient } from 'graphql-request'; export interface PerformanceIncident { id: string; number: string; state: 'OPEN' | 'CLOSED' | 'WIP'; severity: string; actionNames: string[]; namespace: string; mean: number; count: number; scopedCount: number; totalDuration: number; description: string; digests: string[]; hasNPlusOne: boolean; hasSamplesInRetention: boolean; createdAt: string; lastOccurredAt: string; lastSampleOccurredAt: string; updatedAt: string; } export declare function getPerformanceIncidents(graphqlClient: GraphQLClient, appId: string, states?: string[], limit?: number, offset?: number): Promise<{ incidents: PerformanceIncident[]; total: number; hasMore: boolean; }>; //# sourceMappingURL=performance-incidents.d.ts.map