/// <reference types="react" />
export interface IWindowScrollHandler {
    onScroll: (event: UIEvent) => void;
    disableThrottle?: boolean;
    options?: AddEventListenerOptions;
}
export declare const WindowScrollHandler: React.FC<IWindowScrollHandler>;
