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<any>;
    showNotif: EventEmitter<any>;
    constructor();
    ngOnInit(): void;
    ngOnChanges(): void;
    btnShowMenu_Click(): void;
    btnShowNotif_Click(): void;
}
