import { Bitcoind } from '../../types'; type GetIndexInfoParams = { bitcoind: Bitcoind; index_name?: string; }; /** * getindexinfo ( "index_name" ) * * Returns the status of one or all available indices currently running in the node. * */ export declare function getIndexInfo(params: GetIndexInfoParams): Promise; export {};