import { CosmosQueriesImpl, IQueriesStore, NobleQueries, OsmosisQueries } from "@keplr-wallet/stores"; import { KeplrETCQueriesImpl } from "@keplr-wallet/stores-etc"; import { EthereumQueries } from "@keplr-wallet/stores-eth"; export type QueriesStore = IQueriesStore & Partial & { cosmos?: Pick; } & { keplrETC?: Pick; } & Partial>;