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