import type { Ref } from '@stacksjs/stx'; /** * Reactive pointer position and state. */ export declare function usePointer(target?: HTMLElement | Window): UsePointerReturn; export declare interface UsePointerReturn { isInside: Ref x: Ref y: Ref pointerId: Ref pressure: Ref tiltX: Ref tiltY: Ref pointerType: Ref }