import type { Ref, ComponentPublicInstance } from 'vue'; import type { Key } from '../type'; type RefType = HTMLElement | ComponentPublicInstance; export type RefsValue = Map; type UseRef = [(key: Key) => (el: RefType) => void, Ref]; declare const useRefs: () => UseRef; export default useRefs;