/** * This function will set the scrollTop of an element using either the * scroll method if available, or by changing the scrollTop property. * If no scrollTop is specified, it'll scroll to the bottom. */ export declare const scroll: (el: Element, scrollTop?: number) => void; export default scroll;