import { NavigationItem } from '../navigation.types'; export type BottomNavigationProps = { activeItemId?: string | null; onItemSelect?: (id: string) => void; items: NavigationItem[]; }; export declare function BottomNavigation({ activeItemId, items, onItemSelect }: BottomNavigationProps): import("react/jsx-runtime").JSX.Element; export type BottomNavigationBarProps = BottomNavigationProps; export declare const BottomNavigationBar: typeof BottomNavigation;