import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ComputeError = { code: string; details?: { [k: string]: any; } | undefined; message: string; requestId: string; }; /** @internal */ export declare const ComputeError$inboundSchema: z.ZodType; /** @internal */ export type ComputeError$Outbound = { code: string; details?: { [k: string]: any; } | undefined; message: string; request_id: string; }; /** @internal */ export declare const ComputeError$outboundSchema: z.ZodType; export declare function computeErrorToJSON(computeError: ComputeError): string; export declare function computeErrorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=computeerror.d.ts.map