import { AuthConfig, OAuthService } from 'angular-oauth2-oidc'; import { JZAuthModuleConfig } from './jz-auth-module-config.service'; import { JZUser } from './jz-user'; export declare class JZAuthService { private _config; private _user; oauthService: OAuthService; get enable(): boolean; get authConfig(): AuthConfig; constructor(oauthService: OAuthService, config?: JZAuthModuleConfig); startup(): void; get currentUser(): JZUser; }