import { Bitcoind } from '../../types'; type AbortRescanParams = { bitcoind: Bitcoind; }; /** * abortrescan * * Stops current wallet rescan triggered by an RPC call, e.g. by an importprivkey call. * Note: Use "getwalletinfo" to query the scanning progress. * */ export declare function abortRescan(params: AbortRescanParams): Promise; export {};