import { OnInit, NgZone } from '@angular/core'; import { AlSessionStartedEvent, AlActingAccountResolvedEvent } from '@al/session'; import { MenuItem, SelectItem } from 'primeng/api'; import { AIMSAccount } from '@al/client'; export declare class ALAppHeaderComponent implements OnInit { private zone; private alSession; authenticated: boolean; actingAccountName: string; actingAccountId: string; actingAccount: AIMSAccount; actingAccountNameTest: string; managedAccounts: AIMSAccount[]; managedAccountsItems: SelectItem[]; managedAccountsBuffer: any[]; bufferSize: number; numberOfItemsFromEndBeforeFetchingMore: number; userMenuItems: MenuItem[]; constructor(zone: NgZone); ngOnInit(): void; onSessionStart: (event: AlSessionStartedEvent) => void; onActingAccountResolved: (event: AlActingAccountResolvedEvent) => void; logout: () => void; onAccountChanged(account: AIMSAccount): void; onScrollToEnd(): void; onScroll({ end }: { end: any; }): void; accountSearchFn(term: string, account: AIMSAccount): boolean; private fetchMore; }