import { createElementByPoint } from './core.mjs'; export { UseElementByPointOptions, UseElementByPointReturn } from './core.mjs'; import '@usels/core'; import '../../shared/configurable.mjs'; import '@legendapp/state'; /** * Reactive element-at-point tracker. * * Continuously polls `document.elementFromPoint()` on each animation frame and * updates `element$` whenever the element under the specified coordinates * changes. Supports single or multiple element detection modes. */ type UseElementByPoint = typeof createElementByPoint; declare const useElementByPoint: UseElementByPoint; export { type UseElementByPoint, createElementByPoint, useElementByPoint };