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