import type { InjectedAccount, InjectedAccounts, Unsubcall } from '@soul-wallet/extension-inject/types'; import type { SendRequest } from './types'; export default class Accounts implements InjectedAccounts { constructor(_sendRequest: SendRequest); get(anyType?: boolean): Promise; subscribe(cb: (accounts: InjectedAccount[]) => unknown): Unsubcall; }