import { UnwrapRef } from 'vue';

/**
 * 异步获取 ref 实例
 * @param {string} refName ref实例名称
 */
export declare const useAsyncGetRefs: <T = any>(refName: string, proxy?: ComponentPublicInstance) => Promise<T | null>;
/**
 * 同步获取 ref 实例
 * @param {string} refName ref实例名称
 */
export declare const useGetRefs: <T = any>(refName: string, proxy?: ComponentPublicInstance) => Ref<UnwrapRef<T> | null>;
