/** * @returns An `AnimationLink` containing `x` and `y` scroll offsets from `0` to `1`. * * @see {@link https://lively.infinityfx.dev/docs/hooks/use-scroll} */ export default function useScroll(target?: React.RefObject): import("..").AnimationLink<{ x: number; y: number; }, { x: number; y: number; }>;