export interface IApplicationHubProps { data?: any; localization?: any; isPageLayout?: boolean; customLinkBgColor?: string; userName?: string; userOrganization?: string; hasPromotionalCampaigns?: boolean; isAppSwitcher: boolean; hubApiUrl: string; hubApiKey: string; hubToken: string; } export interface IApplicationHubRowProps { items: any; title: string; type?: any; allowEditLinks?: boolean; customName?: string; welcomeMessage?: string; userName?: string; userOrganization?: string; hubTrackingProps: { hubApiUrl: string; apiKey: string; token: string; isAppSwitcher: boolean; }; }