import { AmCommand } from '@salesforce/b2c-tooling-sdk/cli'; import type { AccountManagerRole } from '@salesforce/b2c-tooling-sdk'; /** * Command to get details of a single Account Manager role. */ export default class RoleGet extends AmCommand { static args: { roleId: import("@oclif/core/interfaces").Arg>; }; static description: string; static enableJsonFlag: boolean; static examples: string[]; run(): Promise; }