import { EventEmitter } from '../../../stencil-public-runtime';
import { LANGUAGE_TYPES } from "../../../managers/language/constants";
import { NotificationGroup, NotificationItem } from '../header-types';
export declare class SlNotificationMenu {
    requiredNotifications: NotificationGroup;
    otherNotifications: NotificationGroup[];
    badgeOther: number;
    badgeRequired: number;
    internalLanguage: LANGUAGE_TYPES;
    notificationClick: EventEmitter<NotificationItem>;
    seeAllClick: EventEmitter<string>;
    private renderTitle;
    private renderItem;
    private renderSeeAllLink;
    private renderAccordionItem;
    render(): any;
}
