import { Bitcoind } from'../../types';
typeGetMempoolInfoParams = {
bitcoind: Bitcoind;
};
/**
* getmempoolinfo
*
* Returns details on the active state of the TX memory pool.
*
*/exportdeclarefunctiongetMempoolInfo(params: GetMempoolInfoParams): Promise<any>;
export {};