Files
wdi-dashboard/node_modules/@chakra-ui/menu/dist/menu-list.d.mts
2024-08-16 15:06:52 +05:30

18 lines
565 B
TypeScript

import * as _chakra_ui_system from '@chakra-ui/system';
import { HTMLChakraProps } from '@chakra-ui/system';
import { HTMLMotionProps } from 'framer-motion';
interface MenuListProps extends HTMLChakraProps<"div"> {
/**
* Props for the root element that positions the menu.
*/
rootProps?: HTMLChakraProps<"div">;
/**
* The framer-motion props to animate the menu list
*/
motionProps?: HTMLMotionProps<"div">;
}
declare const MenuList: _chakra_ui_system.ComponentWithAs<"div", MenuListProps>;
export { MenuList, MenuListProps };