import type { VueInstance } from '@antdv/ui/es/types'; import type { MaybeRef } from 'vue'; import type { MaybeComputedRef } from '../types'; export type MaybeElementRef = MaybeRef; export type MaybeComputedElementRef = MaybeComputedRef; export type MaybeElement = HTMLElement | SVGElement | VueInstance | undefined | null; export type UnRefElementReturn = T extends VueInstance ? Exclude : T | undefined; /** * Get the value of value/ref/getter. */ export declare function resolveUnref(r: MaybeComputedRef): T; /** * Get the dom element of a ref of element or Vue component instance * * @param elRef */ export declare function unrefElement(elRef: MaybeComputedElementRef): UnRefElementReturn;