import { FetchHelper, Logger } from '../../Service/index.js'; import { Data, Uuid } from '../../Type/Definition/index.js'; /** * The put element endpoint replaces 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=putelementendpoint) * @see [Ember Nexus API: Replace Element Endpoint](https://ember-nexus.github.io/api/#/api-endpoints/element/put-element) * * @internal */ declare class PutElementEndpoint { private logger; private fetchHelper; constructor(logger: Logger, fetchHelper: FetchHelper); putElement(elementId: Uuid, data: Data): Promise; } export { PutElementEndpoint };