import { Router } from '@angular/router'; import { Storage } from '@ubud/storage'; import { Config } from '../values/config'; import { User } from '../models/user'; import { Observable } from 'rxjs'; import { HttpClient } from '@angular/common/http'; import { Location } from '@angular/common'; import { NacoService } from './naco.service'; export declare class NacoExpressService extends NacoService { private request; private response; constructor(config: Config, router: Router, storage: Storage, http: HttpClient, location: Location, request: any, response: any); refreshWithSilentAuth(): Observable; getCurrentOrigin(path?: string): string; redirect(url: string): void; }