import * as React from 'react'; interface ScrollToOptions { getContainer?: () => HTMLElement | Window | Document; /** Scroll end callback */ callback?: () => any; /** Animation duration, default as 450 */ duration?: number; } export default function useScrollTo(options?: ScrollToOptions): (React.MutableRefObject | ((y: number) => void))[]; export {};