/** * Scroll to bottom of an element. * * Works in all browsers - just that in Safari, the smooth scrolling doesn't work. * @param el The bottom of which element you want to scroll down to */ export declare const smoothScrollToBottom: (el: HTMLElement, smooth?: boolean) => void;