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