import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ErrorEvent = { type: "error"; sequenceNumber: number; code: string; message: string; param?: string | undefined; }; /** @internal */ export declare const ErrorEvent$inboundSchema: z.ZodType; /** @internal */ export type ErrorEvent$Outbound = { type: "error"; sequence_number: number; code: string; message: string; param?: string | undefined; }; /** @internal */ export declare const ErrorEvent$outboundSchema: z.ZodType; export declare function errorEventToJSON(errorEvent: ErrorEvent): string; export declare function errorEventFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=errorevent.d.ts.map