import { EtherlinkInfoClient, EtherlinkInfoClientTransactionsResult, EtherlinkTransactionCursor } from './EtherlinkInfoClient';
export declare class BlockscoutInfoClient extends EtherlinkInfoClient {
    fetchTransactions(address: string, limit: number, cursor?: EtherlinkTransactionCursor | undefined): Promise<EtherlinkInfoClientTransactionsResult>;
    fetchContractTransactions(contractAddress: string, address: string, limit: number, cursor?: EtherlinkTransactionCursor | undefined): Promise<EtherlinkInfoClientTransactionsResult>;
}
