import { CanActivate, Router } from '@angular/router'; import { Observable } from 'rxjs'; import { AuthenticationService } from './auth.service'; export declare class SetupGuard implements CanActivate { private auth; private router; constructor(auth: AuthenticationService, router: Router); canActivate(): Observable; }