export declare enum SilaCoreConfigMode { CLIENT = 0, UNITELABS = 1, } export interface SilaCoreConfigInterface { mode: SilaCoreConfigMode | null; } /** * Class AppConfig * * This class is responsible for getting all settings from REST * right before boot. If config requests error, then we proceed * with defaults. */ export declare class SilaCoreConfig { private static config; /** * AppConfig constructor (angular injects auto-magically for us) * param {HttpClient} http */ static setConfig(config: SilaCoreConfigInterface): void; static getMode(): SilaCoreConfigMode; }