import { default as React } from 'react'; type BottomNavigationBarItemProps = { label: string; icon: React.ReactElement<{ className?: string; }>; isActive: boolean; } & React.HTMLAttributes; type BottomNavigationBarProps = { items: BottomNavigationBarItemProps[]; } & React.HTMLAttributes; declare const BottomNavigationBar: ({ items, ...props }: BottomNavigationBarProps) => React.JSX.Element; declare const BottomNavigationBarItem: ({ label, icon, isActive, ...props }: BottomNavigationBarItemProps) => React.JSX.Element; export type { BottomNavigationBarProps }; export { BottomNavigationBar, BottomNavigationBarItem }; //# sourceMappingURL=index.d.ts.map