import { ProtocolOptions } from '../utils/ProtocolOptions'; export declare abstract class BlockExplorerProtocol { abstract options: ProtocolOptions; getBlockExplorerLinkForAddress(address: string): Promise; getBlockExplorerLinkForTxId(txId: string): Promise; }