You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
357 B
TypeScript

import { PolymorphicComponent } from '../utils/PolymorphicComponent';
import { MenuTypeMap } from './Menu.types';
/**
*
* Demos:
*
* - [Menu](https://mui.com/base-ui/react-menu/)
*
* API:
*
* - [Menu API](https://mui.com/base-ui/react-menu/components-api/#menu)
*/
declare const Menu: PolymorphicComponent<MenuTypeMap<{}, "div">>;
export { Menu };