import z from "zod"; /** Validates API key selection and destructive confirmation options. */ declare const deleteApiKeyOptsSchema: z.ZodObject<{ org: z.ZodOptional; key: z.ZodOptional; yes: z.ZodDefault; }, z.core.$strip>; export declare const orgApiKeyDeleteCommand: import("../lib/command").CommandDefinition<{ readonly yes: { readonly type: "boolean"; readonly short: "y"; readonly default: false; }; readonly org: { type: "string"; short: string; }; readonly key: { type: "string"; short: string; }; readonly json: { type: "boolean"; }; }, z.ZodObject<{ json: z.ZodDefault; positionals: z.ZodTuple<[], null>; org: z.ZodOptional; key: z.ZodOptional; yes: z.ZodDefault; }, z.core.$strict>> & import("../lib/command").Command; /** * Permanently revokes an organization API key after confirmation. * * @param opts - Organization, API key, and confirmation options. */ export declare function deleteOrganizationApiKey(opts: z.infer): Promise; export {}; //# sourceMappingURL=org-api-key-delete.d.ts.map