import { Bitcoind, Json } from '../../types.js';
type ScanBlocksParams = {
    bitcoind: Bitcoind;
    action: string;
    scanobjects?: Array<unknown>;
    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<any>;
export {};
//# sourceMappingURL=scan-blocks.d.ts.map