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