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