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