import type { GraphQLClient } from 'graphql-request'; export interface ExceptionIncidentSample { id: string; timestamp: string; message: string; action: string; namespace: string; revision: string; version: string; duration?: number; queueDuration?: number; params?: Record; customData?: Record; sessionData?: Record; overview?: Array<{ key: string; value: string; }>; environment?: Array<{ key: string; value: string; }>; errorCauses?: Array<{ name: string; message: string; firstLine: string; }>; firstMarker?: { revision: string; shortRevision: string; liveFor: number; liveForInWords: string; exceptionRate: number; exceptionCount: number; createdAt: string; }; } export declare function getExceptionIncidentSample(graphqlClient: GraphQLClient, appId: string, incidentNumber: string, offset?: number): Promise; //# sourceMappingURL=exception-incident-sample.d.ts.map