import { type PopperProps } from '@mui/material'; import { type PropsWithChildren } from 'react'; import { type WithoutEmotionSpecific } from '../../types'; export type DatePickerPopperProps = PropsWithChildren, 'children' | 'disablePortal' | 'transition'> & { /** * Обработчик закрытия Popper */ onClose: () => void; }>; export declare const DatePickerPopover: ({ children, onMouseEnter, onMouseLeave, onClose, anchorEl, title, open, ...props }: DatePickerPopperProps) => JSX.Element;