import type { UmbElementDetailModel } from '../../types.js'; import type { ElementResponseModel, PublishedElementResponseModel } from '../../../core/backend-api/index.js'; /** * Maps an Element response model to the Element detail model. * Shared by the detail read endpoint and the publishing published endpoint. * @param {ElementResponseModel | PublishedElementResponseModel} data - The Element response from the server * @returns {UmbElementDetailModel} The Element detail model */ export declare function umbMapElementResponseToDetailModel(data: ElementResponseModel | PublishedElementResponseModel): UmbElementDetailModel;