import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ErrorT = { code: string; message: string; }; /** @internal */ export declare const ErrorT$inboundSchema: z.ZodType; /** @internal */ export type ErrorT$Outbound = { code: string; message: string; }; /** @internal */ export declare const ErrorT$outboundSchema: z.ZodType; export declare function errorToJSON(errorT: ErrorT): string; export declare function errorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=error.d.ts.map