import { IHubUserRequestOptions } from "../hub-types"; import { IModel } from "../hub-types"; import { IVersion } from "./types/IVersion"; /** * Updates the specified version with with the state of the supplied model * throws an exception if the version is stale and force is not true * @param model * @param version * @param requestOptions * @param force * @returns */ export declare function updateVersion(model: IModel, version: IVersion, requestOptions: IHubUserRequestOptions, force?: boolean): Promise;