import { Bitcoind } from '../../types'; type GetBlockHashParams = { bitcoind: Bitcoind; height: number; }; /** * getblockhash height * * Returns hash of block in best-block-chain at height provided. * */ export declare function getBlockHash(params: GetBlockHashParams): Promise; export {};