export declare abstract class ProtocolBlockExplorer { readonly blockExplorer: string; constructor(blockExplorer: string); abstract getAddressLink(address: string): Promise; abstract getTransactionLink(transactionId: string): Promise; }