import type { Ref } from "vue"; export declare type TargetType = HTMLElement | Ref; declare const useSize: (target: TargetType) => { width: Ref; height: Ref; }; export default useSize;