import { ReactNode } from 'react'; import { MessagingApp } from 'global/types.generated'; declare const MessagingAppInfo: { [key: string]: { title: string; icon: ReactNode; }; }; declare const Web2Apps: (MessagingApp.Discord | MessagingApp.Email | MessagingApp.Telegram)[]; export type Web2AppLower = Lowercase; export { MessagingAppInfo, Web2Apps };