import { BmCommand } from '@salesforce/b2c-tooling-sdk/cli'; interface DeleteResult { success: boolean; role: string; hostname: string; } export default class BmRolesDelete extends BmCommand { static args: { role: import("@oclif/core/interfaces").Arg>; }; static description: string; static enableJsonFlag: boolean; static examples: string[]; run(): Promise; } export {};