import { IHubUserRequestOptions } from "../hub-types"; import { IModel } from "../hub-types"; import { ICreateVersionOptions } from "./types/ICreateVersionOptions"; import { IVersion } from "./types/IVersion"; /** * Creates and returns a new version of the entity * @param entity * @param requestOptions * @returns */ export declare function createVersion(model: IModel, requestOptions: IHubUserRequestOptions, options?: ICreateVersionOptions): Promise;