import ProxyInterface from '../proxy-interface'; import { ApplicationModel, ApplicationPageModel } from '../model/application'; declare class ApplicationPageProxy implements ProxyInterface { private applicationStatusPage; constructor(responseData: any); getModel(): ApplicationPageModel; } declare class ApplicationProxy implements ProxyInterface { private application; constructor(responseData: any); getModel(): ApplicationModel; } export { ApplicationPageProxy, ApplicationProxy }; //# sourceMappingURL=application-status-page-proxy.d.ts.map