interface LongPressOptions { onClick?: (e: MouseEvent | TouchEvent) => void; duration?: number; } declare const useOnLongPress: (callback: () => void, { onClick, duration }?: LongPressOptions) => (node: HTMLElement | null) => void; export { useOnLongPress };