import ProxyInterface from '../proxy-interface'; import { BoxUserPageModel, UserPageModel } from '@pkpm/pkpm-types'; declare class UserPageProxy implements ProxyInterface { private userPage; constructor(responseData: any); getModel(): UserPageModel; } declare class BoxUserPageProxy implements ProxyInterface { private userPage; constructor(responseData: any); getModel(): BoxUserPageModel; } export { UserPageProxy, BoxUserPageProxy }; //# sourceMappingURL=user-page-proxy.d.ts.map