//#region src/lib/scroll-into-view-within.d.ts /** * Smoothly scroll `scrollParent` so `el` is centered, when `el` is currently * outside the parent's visible bounds. No-op when already in view or no * scroll parent is provided. Used by the TOC and the sidebar to track the * active item as the route changes. */ declare function scrollIntoViewWithin(el: HTMLElement, scrollParent: HTMLElement | null): void; //#endregion export { scrollIntoViewWithin };