import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ComputeService, ComputeService$Outbound } from "./computeservice.js"; export type ComputeServiceList = { nextCursor: string | null; total: number; data: Array; }; /** @internal */ export declare const ComputeServiceList$inboundSchema: z.ZodType; /** @internal */ export type ComputeServiceList$Outbound = { next_cursor: string | null; total: number; data: Array; }; /** @internal */ export declare const ComputeServiceList$outboundSchema: z.ZodType; export declare function computeServiceListToJSON(computeServiceList: ComputeServiceList): string; export declare function computeServiceListFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=computeservicelist.d.ts.map