import React from 'react'; export type BottomNavigationVariant = 'accent' | 'primary'; export type BottomNavigationSize = 'sm' | 'md' | 'lg'; export type BottomNavigationItem = { id: string; label: string; icon: React.ReactNode; activeIcon?: React.ReactNode; }; export type BottomNavigationProps = { activeItemId: string; items: BottomNavigationItem[]; variant?: BottomNavigationVariant; size?: BottomNavigationSize; onChange: (id: string) => void; }; export declare const BottomNavigation: ({ items, activeItemId, onChange, variant, size, }: BottomNavigationProps) => import("react/jsx-runtime").JSX.Element;