import { Bitcoind } from '../../types'; type SaveMempoolParams = { bitcoind: Bitcoind; }; /** * savemempool * * Dumps the mempool to disk. It will fail until the previous dump is fully loaded. * */ export declare function saveMempool(params: SaveMempoolParams): Promise; export {};