import { StoryObj } from '@storybook/react'; import { TopbarMenu } from './TopbarMenu'; declare const meta: { title: string; component: typeof TopbarMenu; args: { open: false; onClose: import('@vitest/spy').Mock<(...args: any[]) => any>; sections: never[]; }; tags: string[]; }; export default meta; type Story = StoryObj; export declare const WithUserProfile: Story; export declare const WithEmailIcon: Story;