import { StoryObj } from '@storybook/react-vite'; import { Navigation } from '.'; import { Key } from 'react-aria-components'; import { ReactNode } from 'react'; type Story = StoryObj>; type Section = { id: Key; title?: string; children: Item[]; }; type Item = { id: Key; title: string; href: string; icon?: ReactNode; children?: Item[]; }; declare const _default: { component: ({ className, items, children, dependencies, idScope, addIdAndValue, ...rest }: import('./Navigation').NavigationProps) => import("react/jsx-runtime").JSX.Element; title: string; tags: string[]; }; export default _default; export declare const Flat: Story; export declare const Nested: Story
;