import * as z from "zod/v3"; import { AutoscalerConfig, AutoscalerConfig$Outbound } from "./autoscalerconfig.js"; import { NodeShape } from "./nodeshape.js"; export type CreateFleet = { nodeShape: NodeShape; autoscalerConfig: AutoscalerConfig; /** * Readable name for a fleet. Must be unique within an organization. */ name: string; }; /** @internal */ export type CreateFleet$Outbound = { nodeShape: string; autoscalerConfig: AutoscalerConfig$Outbound; name: string; }; /** @internal */ export declare const CreateFleet$outboundSchema: z.ZodType; export declare function createFleetToJSON(createFleet: CreateFleet): string; //# sourceMappingURL=createfleet.d.ts.map