import * as z from "zod/v3"; import { OutpostError } from "./outposterror.js"; /** * Timeouts occurred with the request */ export type TimeoutErrorData = { message?: string | undefined; additionalProperties: { [k: string]: any; }; }; /** * Timeouts occurred with the request */ export declare class TimeoutError extends OutpostError { additionalProperties: { [k: string]: any; }; /** The original data that was passed to this error instance. */ data$: TimeoutErrorData; constructor(err: TimeoutErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const TimeoutError$inboundSchema: z.ZodType; /** @internal */ export type TimeoutError$Outbound = { message?: string | undefined; [additionalProperties: string]: unknown; }; /** @internal */ export declare const TimeoutError$outboundSchema: z.ZodType; //# sourceMappingURL=timeouterror.d.ts.map