import type { Ref } from '@stacksjs/stx'; /** * Reactive element at a given point. Tracks the element under the mouse cursor. */ export declare function useElementByPoint(options?: { x?: Ref, y?: Ref }): UseElementByPointReturn; export declare interface UseElementByPointReturn { element: Ref x: Ref y: Ref }