import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdk-validation-error.js"; export type ErrorT = { code: string; message: string; details?: { [k: string]: any; } | undefined; }; /** @internal */ export declare const ErrorT$inboundSchema: z.ZodMiniType; export declare function errorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=error-envelope.d.ts.map