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