import { ReactElement } from 'react'; interface IAppHubCustomProps { name: string; url: string; isAddButton?: boolean; customLinkBgColor?: string; icon?: any; hubEventTypeId: string; hubReferenceId: string; isAppSwitcher: boolean; hubApiUrl: string; hubApiKey: string; hubToken: string; } export declare const LogoVariants: { Default: string; Solid: string; Outlined: string; White: string; }; declare const AppHubCustom: (props: IAppHubCustomProps) => ReactElement; export default AppHubCustom;