import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ListClusterPricesRequest = { model?: string | undefined; }; /** @internal */ export declare const ListClusterPricesRequest$inboundSchema: z.ZodType; /** @internal */ export type ListClusterPricesRequest$Outbound = { model?: string | undefined; }; /** @internal */ export declare const ListClusterPricesRequest$outboundSchema: z.ZodType; export declare function listClusterPricesRequestToJSON(listClusterPricesRequest: ListClusterPricesRequest): string; export declare function listClusterPricesRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listclusterprices.d.ts.map