interface Options { key?: string; delay?: number; shouldPreventDefault?: boolean; } declare const useLongPress: (onLongPress: () => void, onClick?: () => void, { key, shouldPreventDefault, delay }?: Options) => { onMouseDown: (e: React.MouseEvent) => void; onTouchStart: (e: React.TouchEvent) => void; onKeyDown: (e: React.KeyboardEvent) => void; onMouseUp: () => void; onKeyUp: (e: React.KeyboardEvent) => void; onMouseLeave: () => void; onTouchEnd: () => void; }; export default useLongPress; //# sourceMappingURL=useLongPress.d.ts.map