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<T extends MaybeElement>(elRef: MaybeComputedElementRef<T>): UnRefElementReturn<T>;
export declare function resolveUnref<T>(r: MaybeComputedRef<T>): T;
