import type { SyntheticEvent } from 'react'; type ReturnVal = { handlePointerDown: (e: SyntheticEvent | PointerEvent) => void; handleDoubleClick: () => void; }; declare const useClickPreventionOnDoubleClick: (onClick: (e: PointerEvent | SyntheticEvent) => void, onDoubleClick: () => void, doubleClickToFullscreen: boolean) => ReturnVal; export { useClickPreventionOnDoubleClick };