import { LitElement } from 'lit'; import '../../reusable/button'; /** * Component for notification panel within the Header. * @slot menu-slot - Slot for panel menu * @slot unnamed - Slot for notification content. * @fires on-footer-btn-click - Emits the panel footer button event. `detail:{ origEvent: Event }` */ export declare class HeaderNotificationPanel extends LitElement { static styles: import("lit").CSSResult; /** Notification panel Title. */ accessor panelTitle: string; /** Notification panel footer button text. */ accessor panelFooterBtnText: string; /** Hide notification panel footer */ accessor hidePanelFooter: boolean; render(): import("lit-html").TemplateResult<1>; private _handlefooterBtnEvent; } declare global { interface HTMLElementTagNameMap { 'kyn-header-notification-panel': HeaderNotificationPanel; } } //# sourceMappingURL=headerNotificationPanel.d.ts.map