import type { MaybeRef } from './_shared'; /** * Listen for long press events on an element. * * @param target - The target element * @param handler - The callback to invoke on long press * @param options - Configuration options * @returns A cleanup function */ export declare function onLongPress(target: MaybeRef, handler: (e: PointerEvent) => void, options?: OnLongPressOptions): () => void; export declare interface OnLongPressOptions { delay?: number distanceThreshold?: number }