import { OnInit, EventEmitter, ElementRef, AfterViewInit } from '@angular/core'; import { People } from './../../models/people'; import { AsideItem } from './../../models/aside-item'; import { AsideService } from './aside.service'; export declare class AsideComponent implements OnInit, AfterViewInit { private el; private asideService; people: People; menu: AsideItem[]; textLogout: string; iconLogout: string; iconLinks: string[]; altPhoto: string; show: boolean; logoutAction: EventEmitter; constructor(el: ElementRef, asideService: AsideService); ngOnInit(): void; ngAfterViewInit(): void; logout(): void; toggleSubmenu(index: string): void; getIcon(index: string, subindex?: string): string; toggle(): void; resizeContent(): void; toggleClass(list: any, add?: boolean): void; }