import { MaybeRefOrGetter } from 'vue'; import { ScrollInfoOptions } from '../types'; import { MaybeComputedElementRef } from '@vueuse/core'; export interface UseScrollOptions extends Omit { container?: MaybeComputedElementRef; target?: MaybeComputedElementRef; } export declare function useScroll(options?: MaybeRefOrGetter): { scrollX: import('motion-dom').MotionValue; scrollY: import('motion-dom').MotionValue; scrollXProgress: import('motion-dom').MotionValue; scrollYProgress: import('motion-dom').MotionValue; };