import type { InjectedAccount, InjectedAccounts, Unsubcall } from '@dust-defi/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; }