import { ActivatedRouteSnapshot, CanActivate, CanActivateChild } from '@angular/router'; import { NacoService } from '../domains/services/naco.service'; import { Observable } from 'rxjs'; import { Storage } from '@ubud/storage'; import { Location } from '@angular/common'; export declare class AuthenticatedGuard implements CanActivate, CanActivateChild { private naco; private storage; private location; constructor(naco: NacoService, storage: Storage, location: Location); canActivate(route: ActivatedRouteSnapshot): Observable; canActivateChild(route: ActivatedRouteSnapshot): Observable; }