import { OnInit } from '@angular/core'; import { Router } from '@angular/router'; import { HeroService } from '../services/hero'; import { DelegateService } from '../services/delegateService'; import { Hero } from '../models/hero'; export declare class HeroComponent implements OnInit { private _heroService; private _logoutConfirmation; private _router; private _hero; private _hasDelegate; private _delegateId; readonly Hero: Hero; readonly SupportsLogout: boolean; readonly LogoutConfirmation: string; constructor(heroService: HeroService, router: Router, delegates: DelegateService); private Logout(); private PostLogoutRedirect(); private ShowProfile(); ngOnInit(): void; }