import { Ref, ShallowRef } from 'vue'; type MaybeRef = Ref | T; interface LongPressOptions { onStart: () => void; onEnd: () => void; onUpdate: () => void; delay?: MaybeRef; interval?: number; } export declare function useLongPress(el: ShallowRef, options: Partial): void; export {};