import { type Ref } from 'vue'; import type { Item } from '@/components/type'; export type ActivationManager = { activeIndexes: Set; cleanup: () => void; }; export declare const createActivationManager: (items: Ref, activeIds: Ref>, ParentEl: HTMLElement) => ActivationManager;