import { Bitcoind } from '../../types'; type ReconsiderBlockParams = { bitcoind: Bitcoind; blockhash: string; }; /** * reconsiderblock "blockhash" * * Removes invalidity status of a block, its ancestors and its descendants, reconsider them for activation. * This can be used to undo the effects of invalidateblock. * */ export declare function reconsiderBlock(params: ReconsiderBlockParams): Promise; export {};