import { BmUserAuthCommand } from '../../../utils/bm/user-auth-command.js'; interface DeleteResult { success: boolean; login: string; scope: string; hostname: string; } export default class BmAccessKeyDelete extends BmUserAuthCommand { static args: { login: import("@oclif/core/interfaces").Arg>; }; static description: string; static enableJsonFlag: boolean; static examples: string[]; static flags: { scope: import("@oclif/core/interfaces").OptionFlag; force: import("@oclif/core/interfaces").BooleanFlag; }; run(): Promise; } export {};