import { z } from "zod"; /** Options accepted by the deployment inspection command. */ declare const showDeploymentOptsSchema: z.ZodObject<{ json: z.ZodDefault; positionals: z.ZodTuple<[z.ZodString], null>; }, z.core.$strict>; export declare const deploymentShowCommand: import("../lib/command").CommandDefinition<{ readonly json: { type: "boolean"; }; }, z.ZodObject<{ json: z.ZodDefault; positionals: z.ZodTuple<[z.ZodString], null>; }, z.core.$strict>> & import("../lib/command").Command; /** * Displays normalized deployment status and authorization requirements. * * @param opts - Deployment identity to inspect. */ export declare function showDeployment(opts: z.infer): Promise; export {}; //# sourceMappingURL=deployment-show.d.ts.map