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