import * as z from "zod/v3"; import * as components from "../components/index.js"; export type CreateDeploymentGlobals = { appId?: string | undefined; }; export type CreateDeploymentRequest = { appId?: string | undefined; deploymentConfigV3: components.DeploymentConfigV3; }; /** @internal */ export type CreateDeploymentRequest$Outbound = { appId?: string | undefined; DeploymentConfigV3: components.DeploymentConfigV3$Outbound; }; /** @internal */ export declare const CreateDeploymentRequest$outboundSchema: z.ZodType; export declare function createDeploymentRequestToJSON(createDeploymentRequest: CreateDeploymentRequest): string; //# sourceMappingURL=createdeployment.d.ts.map