import { Bitcoind } from '../../types'; type RescanBlockchainParams = { bitcoind: Bitcoind; start_height?: number; stop_height?: number; }; /** * rescanblockchain ( start_height stop_height ) * * Rescan the local blockchain for wallet related transactions. * Note: Use "getwalletinfo" to query the scanning progress. * The rescan is significantly faster when used on a descriptor wallet * and block filters are available (using startup option "-blockfilterindex=1"). * */ export declare function rescanBlockchain(params: RescanBlockchainParams): Promise; export {};