import { InjectionToken } from '@angular/core'; import { Router } from '@angular/router'; import { Platform } from '@angular/cdk/platform'; import { Observable } from 'rxjs'; export declare const BGX_CONFIG: InjectionToken; export declare class BgxConfigService { private _platform; private _router; private _config; private _configSubject; private readonly _defaultConfig; config: any | Observable; readonly defaultConfig: any; constructor(_platform: Platform, _router: Router, _config: any); setConfig(value: any, opts?: { emitEvent: boolean; }): void; getConfig(): Observable; resetToDefaults(): void; private _init; }