import { APIService } from './api.service'; import { AuthenticationService } from './authentication.service'; import { CacheService } from './cache.service'; import { LoadingService } from './loading.service'; import { ResourceService } from './resource.service'; import { WebsocketService } from './websocket.service'; import { ConfigurationService } from './configuration.service'; export declare class GrangeCore { api: APIService; auth: AuthenticationService; cache: CacheService; config: ConfigurationService; loading: LoadingService; resource: ResourceService; websocket: WebsocketService; constructor(api: APIService, auth: AuthenticationService, cache: CacheService, config: ConfigurationService, loading: LoadingService, resource: ResourceService, websocket: WebsocketService); }