import React from "react"; interface FaviconIconProps { faviconUrl?: string; websiteUrl?: string; size?: "sm" | "md" | "lg"; className?: string; } /** * Component that displays a website favicon with fallback to GlobeAltIcon * If faviconUrl is provided, uses that. If websiteUrl is provided, generates favicon URL. * Falls back to GlobeAltIcon if favicon fails to load. */ export declare function FaviconIcon({ faviconUrl, websiteUrl, size, className }: FaviconIconProps): React.JSX.Element; export {}; //# sourceMappingURL=FaviconIcon.d.ts.map