import type { Ref } from 'vue'; declare type TargetValue = T | undefined | null; declare type TargetType = HTMLElement | Element | Window | Document; export declare type BasicTarget = (() => TargetValue) | TargetValue | Ref>; export declare function getTargetElement(target: BasicTarget, defaultElement?: T): TargetValue; export {};