import { Router, CanActivate } from '@angular/router'; import { AuthenticationService } from './authentication.service'; export declare class GuardService implements CanActivate { private router; private authenticationService; constructor(router: Router, authenticationService: AuthenticationService); canActivate(): boolean; }