import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ComputeEvent, ComputeEvent$Outbound } from "./computeevent.js"; export type ComputeEventList = { nextCursor: string | null; total: number; data: Array; }; /** @internal */ export declare const ComputeEventList$inboundSchema: z.ZodType; /** @internal */ export type ComputeEventList$Outbound = { next_cursor: string | null; total: number; data: Array; }; /** @internal */ export declare const ComputeEventList$outboundSchema: z.ZodType; export declare function computeEventListToJSON(computeEventList: ComputeEventList): string; export declare function computeEventListFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=computeeventlist.d.ts.map