import type { PushNotificationsApnsProblemReportReason } from './PushNotificationsApnsProblemReportReason'; import type { ProblemReportErrorOptions } from '@credo-ts/core'; import { ProblemReportError } from '@credo-ts/core'; import { PushNotificationsApnsProblemReportMessage } from '../messages'; /** * @internal */ interface PushNotificationsApnsProblemReportErrorOptions extends ProblemReportErrorOptions { problemCode: PushNotificationsApnsProblemReportReason; } /** * @internal */ export declare class PushNotificationsApnsProblemReportError extends ProblemReportError { message: string; problemReport: PushNotificationsApnsProblemReportMessage; constructor(message: string, { problemCode }: PushNotificationsApnsProblemReportErrorOptions); } export {};