import { Bitcoind } from '../../types'; type GetMempoolAncestorsParams = { bitcoind: Bitcoind; txid: string; verbose?: boolean; }; /** * getmempoolancestors "txid" ( verbose ) * * If txid is in the mempool, returns all in-mempool ancestors. * */ export declare function getMempoolAncestors(params: GetMempoolAncestorsParams): Promise; export {};