import { ElementParser } from './ElementParser.js'; import { Collection } from '../Type/Definition/index.js'; /** * Class which helps to parse collections. * * **⚠️ Warning**: This is an internal class. You should not use it directly. * * @internal */ declare class CollectionParser { private elementParser; constructor(elementParser: ElementParser); rawCollectionToCollection(rawCollection: object): Collection; } export { CollectionParser };