import { AfterContentInit, OnDestroy, QueryList } from '@angular/core'; import { SidebarNavItemComponent } from '../sidebar-nav-item/sidebar-nav-item.component'; import { SidebarNavService } from './sidebar-nav.service'; export declare class SidebarNavComponent implements AfterContentInit, OnDestroy { private sidebarNavService; /** @prop Optional string to be used for Section Title | '' */ title: string; /** @prop Optional css class string with md-list | '' */ listClass: string; navItemLists: QueryList; navItems: SidebarNavItemComponent[]; private subs; constructor(sidebarNavService: SidebarNavService); ngAfterContentInit(): void; ngOnDestroy(): void; }