import { StakingItem, StakingType } from '@soul-wallet/extension-base/background/KoniTypes'; import BaseStoreWithAddressAndChain from '@soul-wallet/extension-base/services/storage-service/db-stores/BaseStoreWithAddressAndChain'; export default class StakingStore extends BaseStoreWithAddressAndChain { getSingleRecord(chain: string, address: string, type: StakingType): import("dexie").PromiseExtended; getStakings(addresses: string[], chainList?: string[]): import("dexie").PromiseExtended; getStakingsByChains(chainList: string[]): import("dexie").PromiseExtended; getPooledStakings(addresses: string[], chainList?: string[]): import("dexie").PromiseExtended; subscribeStaking(addresses: string[], chainList?: string[]): import("dexie").Observable; }