import { BoxModel, BoxProfileModel } from '../model/box'; import ProxyInterface from '../proxy-interface'; declare class BoxProxy implements ProxyInterface { boxModel: BoxModel; constructor(responseData: any); getModel(): BoxModel; } declare class BoxProfileProxy implements ProxyInterface { private boxProfile; constructor(responseData: any); getModel(): BoxProfileModel; } export { BoxProxy, BoxProfileProxy }; //# sourceMappingURL=box-proxy.d.ts.map