import { LocalStorage } from 'oak-frontend-base/lib/features/localStorage'; import { Cache } from 'oak-frontend-base/lib/features/cache'; import { Feature } from 'oak-frontend-base/lib/types/Feature'; import { AspectWrapper, SelectRowShape } from 'oak-domain/lib/types'; import { CommonAspectDict } from 'oak-common-aspect'; import { EntityDict } from '../general-app-domain'; import { AppType } from '../general-app-domain/Application/Schema'; import { AspectDict } from '../aspects/AspectDict'; import { RuntimeContext } from '../context/RuntimeContext'; export declare class Application, AD extends AspectDict> extends Feature> { private applicationId?; private application?; private rwLock; private cache; private storage; constructor(aspectWrapper: AspectWrapper, type: AppType, cache: Cache>, storage: LocalStorage>); private loadApplicationInfo; private getApplicationFromCache; private refresh; getApplication(): Promise>; getApplicationId(noWait?: true): Promise; }