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