import { AuthCommand } from './authCommand.js'; import type { AccountMemberRole, AccountMemberStatus, AccountMemberType } from '../rest/account-members.js'; export declare function normalizeAccountMemberType(value: string | undefined): AccountMemberType | undefined; export declare function normalizeAccountMemberRole(value: string | undefined): AccountMemberRole | undefined; export declare function normalizeAccountMemberStatus(value: string | undefined): AccountMemberStatus | undefined; export default class AccountMembers extends AuthCommand { static hidden: boolean; static hiddenAliases: string[]; static readOnly: boolean; static idempotent: boolean; static description: string; static flags: { search: import("@oclif/core/interfaces").OptionFlag; type: import("@oclif/core/interfaces").OptionFlag; role: import("@oclif/core/interfaces").OptionFlag; status: import("@oclif/core/interfaces").OptionFlag; limit: import("@oclif/core/interfaces").OptionFlag; 'next-id': import("@oclif/core/interfaces").OptionFlag; 'hide-id': import("@oclif/core/interfaces").BooleanFlag; output: import("@oclif/core/interfaces").OptionFlag; }; run(): Promise; }