import { StoryObj } from '@storybook/react'; import { NavigationItem } from '../navigation.types'; import { BottomNavigation } from './BottomNavigationBar'; declare const meta: { title: string; component: typeof BottomNavigation; args: { activeItemId: string; items: NavigationItem[]; }; tags: string[]; }; export default meta; type Story = StoryObj; export declare const MobileExample: Story;