import { Bitcoind } from '../../types'; type WaitForNewBlockParams = { bitcoind: Bitcoind; timeout?: number; }; /** * waitfornewblock ( timeout ) * * Waits for a specific new block and returns useful info about it. * Returns the current block on timeout or exit. * */ export declare function waitForNewBlock(params: WaitForNewBlockParams): Promise; export {};