/** * 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. * @deprecated This function is no longer recommended for use and has been replaced by 'hasOverflow'. */ export declare function detectOverflow(el: HTMLElement): boolean;