import { FormGroup } from "@angular/forms"; import { AuthService } from "./auth-academy/services/auth.service"; import { CurrentUserModel } from "./auth-academy/common/currentUser.model"; export declare class AppComponent { private authService; title: string; roles: string[]; currentRole: string; currentAlias: string; currentUser: CurrentUserModel; userDemo: any; constructor(authService: AuthService); onCurrentUserObtained(userData: any): void; exampleForm: FormGroup; changeRole(selectedRole: any): void; changeAlias(selectedAlias: any): void; }