import { Bitcoind } from '../../types.js';
type GetMempoolDescendantsParams = {
    bitcoind: Bitcoind;
    txid: string;
    verbose?: boolean;
};
/**
 * getmempooldescendants "txid" ( verbose )
 *
 * If txid is in the mempool, returns all in-mempool descendants.
 *
 */
export declare function getMempoolDescendants(params: GetMempoolDescendantsParams): Promise<any>;
export {};
//# sourceMappingURL=get-mempool-descendants.d.ts.map