export declare const addScrollHandler: (
  onScrollFunction: () => void,
  element?: Node,
) => HTMLElement;

export declare const removeScrollHandler: (
  onScrollFunction: () => void,
  element?: Node,
) => HTMLElement;

export declare const getScrollingElement: () => HTMLElement;
