import { BaseError } from "./base.js"; //#region src/errors/transport.d.ts type UrlRequiredErrorType = UrlRequiredError & { name: "UrlRequiredError"; }; declare class UrlRequiredError extends BaseError { constructor(); } type TransportMethodNotSupportedErrorType = TransportMethodNotSupportedError & { name: "TransportMethodNotSupportedError"; }; declare class TransportMethodNotSupportedError extends BaseError { constructor({ method }: { method: string; }); } type AllTransportsFailedErrorType = AllTransportsFailedError & { name: "AllTransportsFailedError"; }; declare class AllTransportsFailedError extends BaseError { constructor({ method, params, errors, totalAttempts }: { method: string; params: unknown; errors: Array<{ transport: string; error: Error; attempt: number; }>; totalAttempts: number; }); method: string; params: unknown; errors: Array<{ transport: string; error: Error; attempt: number; }>; totalAttempts: number; } //#endregion export { AllTransportsFailedError, AllTransportsFailedErrorType, TransportMethodNotSupportedError, TransportMethodNotSupportedErrorType, UrlRequiredError, UrlRequiredErrorType }; //# sourceMappingURL=transport.d.ts.map