import { Menu } from "@appsmith/wds"; import type { Meta, StoryObj } from "@storybook/react"; /** * A menu displays a list of actions or options that a user can choose. * * Item props are not pulled up in the ArgTypes, the data can be found [here](https://react-spectrum.adobe.com/react-aria/Menu.html#item). */ declare const meta: Meta; export default meta; type Story = StoryObj; export declare const Main: Story; export declare const Submenus: Story; export declare const DisabledItems: Story; export declare const WithIcons: Story;