import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * How the candidate menu is ordered. providers is an unordered filter over which providers are eligible; strategy alone decides ordering. capacity_optimized, the default, groups by a curated provider precedence and sorts by price within each group. lowest_cost orders by price alone across whichever providers remain eligible. */ export declare const ComputePlacementStrategy: { readonly CapacityOptimized: "capacity_optimized"; readonly LowestCost: "lowest_cost"; }; /** * How the candidate menu is ordered. providers is an unordered filter over which providers are eligible; strategy alone decides ordering. capacity_optimized, the default, groups by a curated provider precedence and sorts by price within each group. lowest_cost orders by price alone across whichever providers remain eligible. */ export type ComputePlacementStrategy = ClosedEnum; /** @internal */ export declare const ComputePlacementStrategy$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ComputePlacementStrategy$outboundSchema: z.ZodNativeEnum; //# sourceMappingURL=computeplacementstrategy.d.ts.map