import { Ref } from "vue"; //#region ../../packages/components/collection/src/tokens.d.ts type CollectionItem> = { ref: HTMLElement | null; } & T; type ElCollectionInjectionContext = { itemMap: Map; getItems: () => CollectionItem[]; collectionRef: Ref; }; type ElCollectionItemInjectionContext = { collectionItemRef: Ref; }; //#endregion export { CollectionItem, ElCollectionInjectionContext, ElCollectionItemInjectionContext };