import React, { MutableRefObject } from 'react'; import { MobileBottomNavigationIcon } from "./MobileBottomNavigationIcon"; export type MobileBottomNavigationProps = { children: React.ReactNode; isCollapsed?: boolean; template?: 'homepage' | 'health-tool' | 'article'; refObject?: MutableRefObject; height?: number; } & React.HTMLAttributes; export interface CompoundedComponent extends React.ForwardRefExoticComponent { Icon: typeof MobileBottomNavigationIcon; } declare const MobileBottomNavigation: CompoundedComponent; export { MobileBottomNavigation };