/// /** * An accessible dropdown menu for the common dropdown menu button design pattern. Menu uses roving tabIndex for focus management. * Chakra UI exports 8 components for rendering menus: * Menu: The wrapper component provides context, state, and focus management. * MenuList: The wrapper for the menu items. Must be a direct child of Menu. * MenuButton: The trigger for the menu list. Must be a direct child of Menu. * MenuItem: The trigger that handles menu selection. Must be a direct child of a MenuList. * MenuGroup: A wrapper to group related menu items. * MenuDivider: A visual separator for menu items and groups. * MenuOptionGroup: A wrapper for checkable menu items (radio and checkbox). * MenuItemOption: The checkable menu item, to be used with MenuOptionGroup. * * See docs: https://chakra-ui.com/docs/overlay/menu */ export declare function Menu({ ...props }: any): JSX.Element; export declare function MenuButton({ ...props }: any): JSX.Element; export declare function MenuList({ ...props }: any): JSX.Element; export declare function MenuItem({ ...props }: any): JSX.Element; export declare function MenuItemOption({ ...props }: any): JSX.Element; export declare function MenuGroup({ ...props }: any): JSX.Element; export declare function MenuOptionGroup({ ...props }: any): JSX.Element; export declare function MenuIcon({ ...props }: any): JSX.Element; export declare function MenuCommand({ ...props }: any): JSX.Element; export declare function MenuDivider({ ...props }: any): JSX.Element; //# sourceMappingURL=Menu.d.ts.map