/** * Scrolls an element's offset parent just enough to bring the element * into view if it is outside the parent's visible area. * * @param {HTMLElement|null|undefined} el - The element to reveal. * @public */ export declare function scrollIntoViewIfNeeded(el: HTMLElement | null | undefined): void;