import { NominatorMetadata } from '@soul-wallet/extension-base/background/KoniTypes'; import BaseStoreWithAddressAndChain from '@soul-wallet/extension-base/services/storage-service/db-stores/BaseStoreWithAddressAndChain'; export default class NominatorMetadataStore extends BaseStoreWithAddressAndChain { getAll(): Promise; subscribeByAddresses(addresses: string[]): import("dexie").Observable; subscribeAll(): import("dexie").Observable; getByAddress(addresses: string[]): import("dexie").PromiseExtended; removeByAddress(address: string): Promise; }