/// import { IconDefinition } from '../../index'; export interface MobileNavBarItemProps { onClick: () => void; icon: IconDefinition; label?: string; href?: string; active?: boolean; hasNotification?: boolean; } export declare const MobileNavBarItem: (props: MobileNavBarItemProps) => JSX.Element;