import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; /** * Error data for GatewayTimeoutResponse */ export type GatewayTimeoutResponseErrorData = { code: number; message: string; metadata?: { [k: string]: any; } | null | undefined; }; /** @internal */ export declare const GatewayTimeoutResponseErrorData$inboundSchema: z.ZodType; export declare function gatewayTimeoutResponseErrorDataFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=gatewaytimeoutresponseerrordata.d.ts.map