import { BaseError, type BaseErrorOptions } from './base.mjs'; export type TransportErrorOptions = BaseErrorOptions & { url?: string; status?: number; }; export declare class HttpRequestError extends BaseError { name: string; url?: string; status?: number; constructor(shortMessage: string, options?: TransportErrorOptions); } export declare class TimeoutError extends BaseError { name: string; url?: string; constructor(shortMessage: string, options?: TransportErrorOptions); } export declare class AbortedError extends BaseError { name: string; url?: string; constructor(shortMessage: string, options?: TransportErrorOptions); }