export type ScrollPosition = { scrollLeft: number; scrollTop: number; }; export declare const useScrollPosition: (el: HTMLElement | null) => ScrollPosition;