/** * Checks if the scroll has reached the end. * @param element - The element to check the scroll for. Defaults to the entire document. * @returns Returns a boolean indicating whether the scroll has reached the end. * @example * isScrollEnd() // => false * * @since 1.0.0 */ declare const isScrollEnd: (element?: HTMLElement | null) => boolean; export default isScrollEnd;