import { IRequestOptions } from "@esri/arcgis-rest-request"; import { IModel } from "../hub-types"; import { IItemAndIServerEnrichments } from "../items/_enrichments"; import { IHubEditableContent } from "../core/types/IHubEditableContent"; /** * Converts an Imodel to a Hub editable content object * * @param model IModel to convert * @param requestOptions * @param enrichments hash of enrichments to apply to the content */ export declare function modelToHubEditableContent(model: IModel, requestOptions: IRequestOptions, enrichments: IItemAndIServerEnrichments, content?: Partial): IHubEditableContent;