import type { StateManager } from "../state.js"; import type { AccountInfo, Config } from "../types.js"; import type { AuthService } from "./auth.js"; export declare class AccountService { private auth; private state; private config; constructor(auth: AuthService, state: StateManager, config: Config); addAccount(accountIndex: number): Promise; listAccounts(): AccountInfo[]; switchAccount(accountIndex: number): AccountInfo; removeAccount(accountIndex: number): Promise; getAccountInfo(accountIndex: number): AccountInfo; private toAccountInfo; } //# sourceMappingURL=account.d.ts.map