import z from "zod"; /** Arguments accepted by the project deletion command. */ declare const deleteProjectOptsSchema: z.ZodObject<{ project: z.ZodOptional; yes: z.ZodDefault; }, z.core.$strip>; export declare const projectDeleteCommand: import("../lib/command").CommandDefinition<{ readonly yes: { readonly type: "boolean"; readonly short: "y"; readonly default: false; }; readonly project: { type: "string"; short: string; }; readonly json: { type: "boolean"; }; }, z.ZodObject<{ json: z.ZodDefault; positionals: z.ZodTuple<[], null>; project: z.ZodOptional; yes: z.ZodDefault; }, z.core.$strict>> & import("../lib/command").Command; /** * Deletes a project after confirmation. * * @param opts - Validated project selector and confirmation options. */ export declare function deleteProject(opts: z.infer): Promise; export {}; //# sourceMappingURL=project-delete.d.ts.map