import { KVStore } from "@keplr-wallet/common"; import { ChainGetter, ObservableChainQuery, ObservableChainQueryMap, QueryResponse } from "@keplr-wallet/stores"; import { CoinPretty } from "@keplr-wallet/unit"; import { AccountUnlockingCoins } from "./types"; export declare class ObservableQueryAccountUnlockingCoinsInner extends ObservableChainQuery { protected readonly bech32Address: string; constructor(kvStore: KVStore, chainId: string, chainGetter: ChainGetter, bech32Address: string); protected canFetch(): boolean; protected setResponse(response: Readonly>): void; get unlockingCoins(): CoinPretty[]; } export declare class ObservableQueryAccountUnlockingCoins extends ObservableChainQueryMap { constructor(kvStore: KVStore, chainId: string, chainGetter: ChainGetter); get(bech32Address: string): ObservableQueryAccountUnlockingCoinsInner; }