import { EditableContentEnrichment } from "../items/_enrichments"; import { IHubEditableContent } from "../core/types/IHubEditableContent"; import { IHubRequestOptions } from "../hub-types"; /** * fetch a content entity by identifier * Currently used in arcgis-hub-add-content component, and the Ember content service * @param identifier * @param requestOptions * @returns content entity */ export declare const fetchHubContent: (identifier: string, requestOptions: IHubRequestOptions, enrichments?: EditableContentEnrichment[]) => Promise;