import { ValidNetwork } from '../types';
export declare const generateExplorerLink: ({ chainId, address, type, }: {
    chainId: ValidNetwork;
    address?: string | undefined;
    type?: string | undefined;
}) => string;
