import { Bitcoind } from '../../types';
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 {};
