import { Bitcoind } from '../../types'; type GetBlockStatsParams = { bitcoind: Bitcoind; hash_or_height: string | number; stats?: Array; }; /** * getblockstats hash_or_height ( stats ) * * Compute per block statistics for a given window. All amounts are in satoshis. * It won't work for some heights with pruning. * */ export declare function getBlockStats(params: GetBlockStatsParams): Promise; export {};