type ScrollElement = HTMLElement | (Window & {
    scrollLeft: number;
    scrollTop: number;
});
export declare const useScrollParent: () => {
    getScrollableParent: (element?: HTMLElement | null) => ScrollElement;
};
export {};
