import React from 'react';
export interface ModuleIconProps {
    moduleName: string;
    registryUrl: string;
    className?: string;
    onClick?: (x: any) => void;
}
export declare const ModuleIcon: React.FC<ModuleIconProps>;
