import React from 'react'; import { SidebarProps } from '..'; import { NavigationProps } from '../../AppBarNavList'; import type { StoryObj } from '@storybook/react-vite'; export declare const adminPages: NavigationProps[]; declare const meta: { component: (args: Omit) => React.JSX.Element; title: string; excludeStories: string[]; args: { pages: NavigationProps[]; }; render: ({ ...args }: Omit) => React.JSX.Element; }; export default meta; type Story = StoryObj; export declare const Standard: Story; export declare const ExpandAndClick: Story;