import { Bitcoind } from '../../types.js';
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<any>;
export {};
//# sourceMappingURL=get-mempool-ancestors.d.ts.map