import { AuthCommand } from '../authCommand.js'; import type { AccountMemberUpdateRole } from '../../rest/account-members.js'; export declare function normalizeAccountMemberUpdateRole(value: string | undefined): AccountMemberUpdateRole | undefined; export default class AccountMembersUpdate extends AuthCommand { static hidden: boolean; static hiddenAliases: string[]; static idempotent: boolean; static description: string; static args: { member: import("@oclif/core/interfaces").Arg>; }; static flags: { role: import("@oclif/core/interfaces").OptionFlag; email: import("@oclif/core/interfaces").BooleanFlag; id: import("@oclif/core/interfaces").BooleanFlag; output: import("@oclif/core/interfaces").OptionFlag; force: import("@oclif/core/interfaces").BooleanFlag; 'dry-run': import("@oclif/core/interfaces").BooleanFlag; }; run(): Promise; }