import { RefObject } from "react"; import { MotionValue } from "framer-motion"; interface IOptions { threshold?: number; } /** * `useInViewScroll` returns a MotionValue that updates when the target element is visible in viewport * * @param el - The target element * @param options - An object of options e.g. `threshold` */ export declare const useInViewScroll: (el: RefObject, options?: IOptions) => MotionValue; export {};