import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ComputeProviderHealth, ComputeProviderHealth$Outbound } from "./computeproviderhealth.js"; export type ComputeProviderHealthList = { nextCursor: string | null; total: number; data: Array; }; /** @internal */ export declare const ComputeProviderHealthList$inboundSchema: z.ZodType; /** @internal */ export type ComputeProviderHealthList$Outbound = { next_cursor: string | null; total: number; data: Array; }; /** @internal */ export declare const ComputeProviderHealthList$outboundSchema: z.ZodType; export declare function computeProviderHealthListToJSON(computeProviderHealthList: ComputeProviderHealthList): string; export declare function computeProviderHealthListFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=computeproviderhealthlist.d.ts.map