import { z } from "zod"; declare const REDEPLOYMENT_OPTS_SCHEMA: z.ZodObject<{ project: z.ZodOptional; bindings: z.ZodString; }, z.core.$strip>; export declare const deploymentRedeployCommand: import("../lib/command").CommandDefinition<{ readonly bindings: { readonly type: "string"; }; readonly project: { type: "string"; short: string; }; readonly json: { type: "boolean"; }; }, z.ZodObject<{ json: z.ZodDefault; positionals: z.ZodTuple<[], null>; project: z.ZodOptional; bindings: z.ZodString; }, z.core.$strict>> & import("../lib/command").Command; /** * Redeploys a project's active artifact with explicit account bindings. * * @param opts - Project selector and binding-file path. */ export declare function redeployProject(opts: z.infer): Promise; /** * Reads non-secret account binding identifiers from a JSON file. * * @param filePath - Binding file path, relative to the current directory. */ export declare function readDeploymentBindings(filePath: string): Promise<{ accountId: string; binding: string; serviceId: string; }[]>; export {}; //# sourceMappingURL=deployment-redeploy.d.ts.map