import ServiceBase from '../base'; import { ContextConfigModel } from '../context/service-context'; declare class AppService extends ServiceBase { constructor(serviceContext?: ContextConfigModel); getAllApp(data: any): Promise<{}>; getAllAccountApp(data: any): Promise<{}>; installAppToAccount(data: any): Promise<{}>; unloadingAccountApp(data: any): Promise<{}>; createApp(data: any): Promise<{}>; getAppByAppId(data: any): Promise<{}>; updateApp(data: any): Promise<{}>; updateAppState(data: any): Promise<{}>; deleteApp(data: any): Promise<{}>; } export default AppService; //# sourceMappingURL=app.d.ts.map