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