import { MaybeComputedElementRef, MaybeComputedRef, MaybeElement, UnRefElementReturn } from "./Types"; export declare const noop: () => void; /** * Get the dom element of a ref of element or Vue component instance * * @param elRef */ export declare function unrefElement(elRef: MaybeComputedElementRef): UnRefElementReturn; export declare function resolveUnref(r: MaybeComputedRef): T;