import { MenuProps } from '@mui/material';
import { SnippetNotificationsProps } from '../SnippetNotifications';
export interface NotificationsMenuProps extends MenuProps {
    /**
     * Props to spread to the SnippetNotifications component
     * @default {}
     */
    SnippetNotificationsProps?: SnippetNotificationsProps;
}
export default function NotificationMenu(inProps: NotificationsMenuProps): JSX.Element;
