import type { GraphQLClient } from 'graphql-request'; export interface ExceptionIncident { id: string; name: string; message: string; count: number; lastOccurredAt: string; status: 'open' | 'resolved' | 'muted'; } export declare function getExceptionIncident(graphqlClient: GraphQLClient, appId: string, incidentNumber: string): Promise; //# sourceMappingURL=exception-incident.d.ts.map