import { CanActivate, Router, ActivatedRouteSnapshot, RouterStateSnapshot } from '@angular/router'; import { ConfigService } from '../../core'; import { AuthService } from './auth.service'; export declare class AuthGuard implements CanActivate { private authService; private router; private config; constructor(authService: AuthService, router: Router, config: ConfigService); canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): boolean; }