import { Balance, BlockInfo, ChainKey, GasData, Provider, ProviderCapabilities, ProviderConfig, Transaction, TxHistoryOptions, Utxo } from "../_chunks/provider.mjs"; export declare class Mempool extends Provider { static readonly key = "mempool"; private baseUrl; private defaultChain; constructor(config: Readonly); get capabilities(): ProviderCapabilities; private base; private api; getBalance(address: string, chain?: ChainKey): Promise; getTxHistory(address: string, chain?: ChainKey, options?: Readonly): Promise; getUtxos(address: string, chain?: ChainKey): Promise; getTxDetail(hash: string, chain?: ChainKey): Promise; getGasData(chain?: ChainKey): Promise; getBlockInfo(blockNumber: number, chain?: ChainKey): Promise; } //# sourceMappingURL=mempool.d.mts.map