/** * Gets the number of pixels that an element's content is scrolled vertically. * @param node The DOM element */ declare function scrollTop(node: Element): number; /** * Sets the number of pixels that an element's content is scrolled vertically. * @param node The DOM element * @param val The number of pixels that an element's content is scrolled vertically */ declare function scrollTop(node: Element, val: number): void; export default scrollTop;