import { z } from "zod"; /** Options accepted by the deployment authorization command. */ declare const authorizeDeploymentOptsSchema: z.ZodObject<{ json: z.ZodDefault; noOpen: z.ZodDefault; positionals: z.ZodTuple<[z.ZodString], null>; }, z.core.$strict>; export declare const deploymentAuthorizeCommand: import("../lib/command").CommandDefinition<{ readonly noOpen: { readonly type: "boolean"; readonly default: false; }; readonly json: { type: "boolean"; }; }, z.ZodObject<{ json: z.ZodDefault; noOpen: z.ZodDefault; positionals: z.ZodTuple<[z.ZodString], null>; }, z.core.$strict>> & import("../lib/command").Command; /** * Resumes a deployment, handing off secret entry to the focused web flow. * * @param opts - Deployment identity and browser-opening preference. */ export declare function authorizeDeployment(opts: z.infer): Promise; export {}; //# sourceMappingURL=deployment-authorize.d.ts.map