import { ElementRef } from '@angular/core'; import { MenuBar } from './menu-bar.model'; export declare class MenuBarComponent { private elementRef; cssClass: string; type: 'navbar-fixed-top' | 'navbar-fixed-bottom' | 'container-fluid' | 'navbar-static-top' | 'navbar-static-bottom' | 'navbar-form' | 'sidebar'; contentType: 'container-fluid' | 'container'; menuOptions: MenuBar; direction: 'down' | 'up'; inverse: boolean; showNavBar: boolean; sidebarOpen: boolean; constructor(elementRef: ElementRef); toggle(): void; hide($event?: Event): void; onShowNavBarChange(showNavBar: boolean): void; isRouter(url: any): boolean; }