import { z } from "zod"; /** Options accepted by the deployment cancellation command. */ declare const cancelDeploymentOptsSchema: z.ZodObject<{ json: z.ZodDefault; yes: z.ZodDefault; positionals: z.ZodTuple<[z.ZodString], null>; }, z.core.$strict>; export declare const deploymentCancelCommand: import("../lib/command").CommandDefinition<{ readonly yes: { readonly type: "boolean"; readonly short: "y"; readonly default: false; }; readonly json: { type: "boolean"; }; }, z.ZodObject<{ json: z.ZodDefault; yes: z.ZodDefault; positionals: z.ZodTuple<[z.ZodString], null>; }, z.core.$strict>> & import("../lib/command").Command; /** * Cancels one eligible deployment after confirmation. * * @param opts - Deployment identity and confirmation preference. */ export declare function cancelDeployment(opts: z.infer): Promise; export {}; //# sourceMappingURL=deployment-cancel.d.ts.map