interface ValueObjType { repeat?: boolean; functionToCall: () => unknown; } /** * Detect long press (300ms) on an element. Supports repeat mode for continuous triggers. * * @directive v-long-press * @usage * @option functionToCall - Function to execute on long press * @option repeat - Boolean - if true, continues calling every 100ms while held */ export declare const longPress: { beforeMount(el: HTMLElement, { value }: { value: ValueObjType; }): void; }; export {};