/** * Gets the number of pixels to scroll the element's content from the left edge. * @param node The DOM element */ declare function scrollLeft(node: Element): number; /** * Sets the number of pixels to scroll the element's content from its left edge. * @param node The DOM element * @param val The number of pixels to scroll the element's content from its left edge */ declare function scrollLeft(node: Element, val: number): void; export default scrollLeft;