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