import { ComponentPublicInstance, MaybeRef, MaybeRefOrGetter } from 'vue'; export type VueInstance = ComponentPublicInstance; export type MaybeElementRef = MaybeRef; export type MaybeComputedElementRef = MaybeRefOrGetter; export type MaybeElement = HTMLElement | SVGElement | VueInstance | undefined | null; export type UnRefElementReturn = T extends VueInstance ? Exclude : T | undefined; export declare function unrefElement(elRef: MaybeComputedElementRef): UnRefElementReturn;