import { CollectionParser, FetchHelper, Logger } from '../../Service/index.js'; import { Collection, Uuid } from '../../Type/Definition/index.js'; /** * The get element children endpoint retrieves all child nodes of a single parent node. * * The child nodes are paginated. Within each page, all relations between the parent node and the child nodes contained * on the page are returned. * * **⚠️ Warning**: This is an internal class. You should not use it directly. * * @internal */ declare class GetElementChildrenEndpoint { private logger; private fetchHelper; private collectionParser; constructor(logger: Logger, fetchHelper: FetchHelper, collectionParser: CollectionParser); getElementChildren(parentId: Uuid, page?: number, pageSize?: number): Promise; } export { GetElementChildrenEndpoint };