import { Bitcoind } from '../../types'; type WaitForBlockHeightParams = { bitcoind: Bitcoind; height: number; timeout?: number; }; /** * waitforblockheight height ( timeout ) * * Waits for (at least) block height and returns the height and hash * of the current tip. * Returns the current block on timeout or exit. * */ export declare function waitForBlockHeight(params: WaitForBlockHeightParams): Promise; export {};