import type { MaybeRef } from './_shared'; /** * Unref a value that may be a ref to an HTML element. * Handles the case where the ref value may have an `$el` property (component instance). */ export declare function unrefElement(elRef: MaybeRef): HTMLElement | null | undefined;