import { Bitcoind, Json } from '../../types'; type ScanBlocksParams = { bitcoind: Bitcoind; action: string; scanobjects?: Array; start_height?: number; stop_height?: number; filtertype?: string; options?: Json; }; /** * scanblocks "action" ( [scanobjects,...] start_height stop_height "filtertype" options ) * * Return relevant blockhashes for given descriptors (requires blockfilterindex). * This call may take several minutes. Make sure to use no RPC timeout (bitcoin-cli -rpcclienttimeout=0) * */ export declare function scanBlocks(params: ScanBlocksParams): Promise; export {};