/** Every scrollable ancestor of `element`, innermost first. */ export declare function scrollableAncestorsOf(element: HTMLElement): HTMLElement[]; /** * The nearest scrollable ancestor, or `null`. * * Stands in for "the working area this thing lives in": in an app whose layout * scrolls a `
` rather than the document, that element is exactly the * region a user considers to be the page. */ export declare function nearestScrollableAncestor(element: HTMLElement): HTMLElement | null; //# sourceMappingURL=scroll-parent.d.ts.map