/// import { type MenuProps as MuiMenuProps } from '@mui/material'; import { type WithoutEmotionSpecific } from '../../types'; import { type ProfileMenuItemData } from '../Profile'; type MenuListProps = WithoutEmotionSpecific & { menuList?: ProfileMenuItemData[]; exitButton?: { onClick: () => void; }; }; /** * Компонент для рендера menu с помощью массива данных */ export declare const MenuList: (props: MenuListProps) => JSX.Element; export {};