import type { ErrorDetail } from '@tbdex/http-client'; /** * Error thrown by handler callbacks * @beta */ export declare class CallbackError extends Error { /** Error HTTP Response status code: 400 - Bad Request, 401 - Unauthorized, 500 etc. */ readonly statusCode: number; /** List with full error details objects received from the PFI server response */ readonly details: ErrorDetail[]; constructor(statusCode: number, details?: ErrorDetail[]); } //# sourceMappingURL=callback-error.d.ts.map