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