import { ObservableChainQuery } from "../../chain-query"; import { StakingPool } from "./types"; import { ChainGetter } from "../../../chain"; import { CoinPretty } from "@keplr-wallet/unit"; import { QuerySharedContext } from "../../../common"; export declare class ObservableQueryStakingPool extends ObservableChainQuery { constructor(sharedContext: QuerySharedContext, chainId: string, chainGetter: ChainGetter); protected canFetch(): boolean; get notBondedTokens(): CoinPretty | undefined; get bondedTokens(): CoinPretty | undefined; }