import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ComputeEvent = { data: { [k: string]: any; }; id: string; timestamp: Date; type: string; }; /** @internal */ export declare const ComputeEvent$inboundSchema: z.ZodType; /** @internal */ export type ComputeEvent$Outbound = { data: { [k: string]: any; }; id: string; timestamp: string; type: string; }; /** @internal */ export declare const ComputeEvent$outboundSchema: z.ZodType; export declare function computeEventToJSON(computeEvent: ComputeEvent): string; export declare function computeEventFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=computeevent.d.ts.map