import { Bitcoind } from '../../types'; type GetBlockCountParams = { bitcoind: Bitcoind; }; /** * getblockcount * * Returns the height of the most-work fully-validated chain. * The genesis block has height 0. * */ export declare function getBlockCount(params: GetBlockCountParams): Promise; export {};