import { Bitcoind } from '../../types'; type GetMempoolInfoParams = { bitcoind: Bitcoind; }; /** * getmempoolinfo * * Returns details on the active state of the TX memory pool. * */ export declare function getMempoolInfo(params: GetMempoolInfoParams): Promise; export {};