import { Bitcoind } from '../../types'; type GetMempoolEntryParams = { bitcoind: Bitcoind; txid: string; }; /** * getmempoolentry "txid" * * Returns mempool data for given transaction * */ export declare function getMempoolEntry(params: GetMempoolEntryParams): Promise; export {};