import { CanActivate, Router } from '@angular/router'; import { OAuthService } from 'angular-oauth2-oidc'; import { JZAuthService } from './jz-auth.service'; export declare class JZAuthGuard implements CanActivate { private router; private oauthService; private jzAuthService; constructor(router: Router, oauthService: OAuthService, jzAuthService: JZAuthService); canActivate(): boolean; }