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