/**
* Extension for scrollIntoView of HTMLElement
* set the flag "programmaticScroll" to true on the window object when is called that last 500 ms with this value ,
* so when we listen to scroll event we can know that comes from this method
*
* The reason of this polyfill is that there is no way to know if the scroll event comes from the scrollIntoView method.
* This polyfill is a workaround to solve this problem and shouldn't affect the normal behavior of the scrollIntoView method
*
*/
export default function scrollIntoViewPolyfill(): void;