import { type RefObject } from 'react'; /** * A custom React hook that prevents the default scrolling behavior of the page * when the Command (Mac) or Control (Windows) key is pressed while using the mouse wheel. * * @param targetRef - An optional React ref object pointing to a target HTMLDivElement * or SVGRectElement. If not provided, the event listener will be attached to the * document. */ export declare function usePreventScrollOnWheel(targetRef?: RefObject): void;