export interface ScrollPosition {
    x: number;
    y: number;
}
declare const useScrollPosition: (effect: any, element: any, wait: number) => {
    handleScroll: () => void;
};
export default useScrollPosition;
