import { ReactElement } from 'react'; export declare const LogoVariants: { Default: string; Solid: string; Outlined: string; White: string; NoneOutlined: string; }; interface IAppHubItemProps { internalName: string; shortName: string; customName?: string; subtitle?: string; options?: any; url?: string; localization?: any; hubEventTypeId: string | number; hubReferenceId: string; isAppSwitcher: boolean; hubApiUrl: string; hubApiKey: string; hubToken: string; } declare const AppHubItem: (props: IAppHubItemProps) => ReactElement; export default AppHubItem;