import { OnInit, EventEmitter, OnChanges } from '@angular/core'; import { Theme } from '../../interfaces/menu-models'; export declare class HeaderComponent implements OnInit, OnChanges { theme: Theme; visibleNotif: boolean; srcLogo: string; heightLogo: string; widthLogo: string; badge: number; borderHeader: string; showMenu: EventEmitter; showNotif: EventEmitter; constructor(); ngOnInit(): void; ngOnChanges(): void; btnShowMenu_Click(): void; btnShowNotif_Click(): void; }