import { FetchHelper, Logger } from '../../Service/index.js'; import { Data, Uuid } from '../../Type/Definition/index.js'; /** * The patch element endpoint updates a single element. * * **⚠️ Warning**: This is an internal class. You should not use it directly. * * @see [Further documentation](https://ember-nexus.github.io/web-sdk/#/endpoints/element?id=patchelementendpoint) * @see [Ember Nexus API: Update Element Endpoint](https://ember-nexus.github.io/api/#/api-endpoints/element/patch-element) * * @internal */ declare class PatchElementEndpoint { private logger; private fetchHelper; constructor(logger: Logger, fetchHelper: FetchHelper); patchElement(elementId: Uuid, data: Data): Promise; } export { PatchElementEndpoint };