/** * Detects if the content of an HTMLElement overflows its boundaries. * * @param {HTMLElement} el - The HTMLElement to check for overflow. * @returns {boolean} - `true` if overflow is detected, `false` otherwise. */ export declare function hasOverflow(el: HTMLElement): boolean;