import { Bitcoind, Json } from '../../types.js';
type ImportMempoolParams = {
    bitcoind: Bitcoind;
    filepath: string;
    options?: Json;
};
/**
 * importmempool "filepath" ( options )
 *
 * Import a mempool.dat file and attempt to add its contents to the mempool.
 * Warning: Importing untrusted files is dangerous, especially if metadata from the file is taken over.
 *
 */
export declare function importMempool(params: ImportMempoolParams): Promise<any>;
export {};
//# sourceMappingURL=import-mempool.d.ts.map