import { Network, NetworkType } from '@airgap/beacon-types'; import { BlockExplorer } from './block-explorer'; export declare class TzktBlockExplorer extends BlockExplorer { readonly rpcUrls: { [key in NetworkType]: string; }; constructor(rpcUrls?: { [key in NetworkType]: string; }); getAddressLink(address: string, network: Network): Promise; getTransactionLink(transactionId: string, network: Network): Promise; }