import React from 'react'; type Apps = { name: string; icon: { type: string; name: string; url: string; }; link: string; }[]; interface AppLauncherProps { apps: Apps; isVisible: boolean; } declare const AppLauncher: React.FC; export default AppLauncher;