import type { Key, RefsValue, RefType } from '@antdv/ui/es/types'; import type { Ref } from 'vue'; type UseRef = [(key: Key) => (el: RefType) => void, Ref]; export declare function useRefs(): UseRef; export {};