import * as z from "zod/v3"; import * as components from "../components/index.js"; export type CreateFleetGlobals = { orgId?: string | undefined; }; export type CreateFleetRequest = { orgId?: string | undefined; createFleetV2: components.CreateFleetV2; }; /** @internal */ export type CreateFleetRequest$Outbound = { orgId?: string | undefined; CreateFleetV2: components.CreateFleetV2$Outbound; }; /** @internal */ export declare const CreateFleetRequest$outboundSchema: z.ZodType; export declare function createFleetRequestToJSON(createFleetRequest: CreateFleetRequest): string; //# sourceMappingURL=createfleet.d.ts.map