import { Container } from 'inversify'; import { ApplicationInfo } from '@5minds/processcube_engine_sdk'; import { IamService } from '../../Tools/Iam/IamService'; export declare class ApplicationInfoService { private applicationInfo; private readonly iamService; private readonly container; private extensionInfoServiceProxy; constructor(iamService: IamService, container: Container); init(): void; getApplicationInfo(): Promise; getAuthorityAddress(): Promise; private readApplicationPackageJson; private getPackageJsonContent; }