interface TxApi { getTxHex(txId: string): Promise; } interface Tx { txid: string; } interface AddrApi { getTxHistory(addr: string): Promise>; } export declare function getRequest( addr: string, data: string, addrApi: AddrApi, txApi: TxApi ): Promise; export {};