import { AirGapInterface } from '../types/airgap'; import { BlockExplorerMetadata } from '../types/block-explorer'; export interface BlockExplorer { getMetadata(): Promise; createAddressUrl(address: string): Promise; createTransactionUrl(transactionId: string): Promise; } export declare type AirGapBlockExplorer = AirGapInterface;