import { CollectionParser, FetchHelper, Logger } from '../../Service/index.js'; import { Collection, Uuid } from '../../Type/Definition/index.js'; /** * The get element parents endpoint retrieves all parent nodes of a single child node. * * The parent nodes are paginated. Within each page, all relations between the child node and the parent nodes contained * on the page are returned. * * **⚠️ 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=getelementparentsendpoint) * @see [Ember Nexus API: Get Element Parents Endpoint](https://ember-nexus.github.io/api/#/api-endpoints/element/get-parents) * * @internal */ declare class GetElementParentsEndpoint { private logger; private fetchHelper; private collectionParser; constructor(logger: Logger, fetchHelper: FetchHelper, collectionParser: CollectionParser); getElementParents(childId: Uuid, page?: number, pageSize?: number): Promise; } export { GetElementParentsEndpoint };