import * as z from "zod/v3"; import { AutoscalerConfig, AutoscalerConfig$Outbound } from "./autoscalerconfig.js"; import { NodeShapeId } from "./nodeshapeid.js"; export type CreateFleetV2 = { nodeShapeId: NodeShapeId; autoscalerConfig: AutoscalerConfig; /** * Readable name for a fleet. Must be unique within an organization. */ name: string; }; /** @internal */ export type CreateFleetV2$Outbound = { nodeShapeId: string; autoscalerConfig: AutoscalerConfig$Outbound; name: string; }; /** @internal */ export declare const CreateFleetV2$outboundSchema: z.ZodType; export declare function createFleetV2ToJSON(createFleetV2: CreateFleetV2): string; //# sourceMappingURL=createfleetv2.d.ts.map