import { Ref } from "vue"; import type { BasicTarget } from "../utils/domTarget"; export interface Options { onEnter?: () => void; onLeave?: () => void; } export default function useHover(target: BasicTarget, options?: Options): Ref;