import { type ComponentPublicInstance } from 'vue'; export declare function isTouchEvent(e: MouseEvent | TouchEvent): e is TouchEvent; type RefType = HTMLElement | ComponentPublicInstance; type RefKey = number; type RefsValue = Map; export declare function useRefs(): [ RefsValue, (key: RefKey) => (el: any) => void ]; export {};