import ServiceBase from '../base'; import { ContextConfigModel } from '../context/service-context'; declare class ApplicationService extends ServiceBase { constructor(serviceContext?: ContextConfigModel); getApplication: (data: any) => Promise<{}>; sendApplication: (data: any) => Promise<{}>; updateApplication: (data: any) => Promise<{}>; getApplicationState: () => Promise<{}>; } export { ApplicationService }; //# sourceMappingURL=application.d.ts.map