import { EventEmitter, OnDestroy } from "@angular/core"; import { AuthHelper } from "../components/auth/auth-helper"; import { HttpClient } from "@angular/common/http"; import { AuthRoute } from "../components/auth/auth.route"; import { AuthConfig } from "../components/auth/auth.config"; export declare class ConfigService implements OnDestroy { private _http; configuration: any; emitter: EventEmitter; jwtHelper: AuthHelper; minDate: Date; maxDate: Date; dateFormat: string; appNameKey: string; private _jsonSubscription; onShowFilter: EventEmitter<{}>; GlobalOptions: { blocker: { turnOff: boolean; turnOffOnce: boolean; active: boolean; }; }; constructor(_http: HttpClient); blocker: boolean; load(url: string): Promise; getUrlApi(segment?: string): string; disableGuard(): boolean; getUrlReport(): string; setActiveConfiguration(key: string): void; getActiveConfiguration(): string; getConfigurationApps(): any[]; getActiveAppName(): string; getAuthRoute(): AuthRoute; getAuthConfig(): AuthConfig; hasAuthConfig(): boolean; ngOnDestroy(): void; }