import { RestService } from '../core/services/rest/rest.service'; export declare class ServiceLoader { private static serviceCollection; static addService(service: any, ...args: any[]): any; static getLoadedServices(): Set; static destroyAllServices(): void; static destroyService(service: any): void; static getService(service: any): any; /** * Get a reference directly to the local RestService */ static getRestService(): RestService; static offlineLocalRestService(): void; static onlineLocalRestService(): void; }