/// import { type MenuProps as MuiMenuProps } from '@mui/material'; import { type WithoutEmotionSpecific } from '../types'; export type MenuProps = WithoutEmotionSpecific & { /** * Заголовок для отображения в мобильной версии */ title?: string; }; export declare const Menu: ({ children, onClose, open, title, ...restProps }: MenuProps) => JSX.Element;