import * as z from "zod/v4"; import * as models from "../index.js"; export type DeleteDeploymentGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; export type DeleteDeploymentRequest = { /** * Unique identifier for the deployment. */ id: string; deleteDeploymentRequest?: models.DeleteDeploymentRequest | undefined; }; /** @internal */ export type DeleteDeploymentRequest$Outbound = { id: string; DeleteDeploymentRequest?: models.DeleteDeploymentRequest$Outbound | undefined; }; /** @internal */ export declare const DeleteDeploymentRequest$outboundSchema: z.ZodType; export declare function deleteDeploymentRequestToJSON(deleteDeploymentRequest: DeleteDeploymentRequest): string; //# sourceMappingURL=deletedeployment.d.ts.map