/** * Time-based double-click detection for interactive DOM overlays. * * Call the returned `dispatch` on every `click` event. When two calls arrive * within `DOUBLE_CLICK_THRESHOLD_MS`, the second call is treated as a * double-click and `onDblClick` is invoked; otherwise `onClick` is invoked. * * A third rapid click resets the window (triple-click is not treated as a * second double-click). * * @internal */ export declare const useManualDblClick: (onClick: ((arg: TArg) => void) | undefined, onDblClick: ((arg: TArg) => void) | undefined) => ((arg: TArg) => void);