export interface IIndexingService { getApiTxJSON(txhash: string): any; getUtxosAPI(address: any): any; broadcastRaw(hex: string): any; } export default class IndexingService implements IIndexingService { getApiTxJSON(txhash: string): Promise; getUtxosAPI(address: any): Promise; broadcastRaw(txhex: string): Promise; } //# sourceMappingURL=IndexingService.d.ts.map