interface ScrollToOptions { /** Scroll container, default as window */ container?: HTMLElement | Window | Document; /** Scroll end callback */ callback?: () => any; /** Animation duration, default as 450 */ duration?: number; } export declare function isWindow(obj: any): obj is Window; export declare function getScroll(target: HTMLElement | Window | Document | null, top: boolean): number; export declare function easeInOutCubic(t: number, b: number, c: number, d: number): number; export declare function moveScroll(y: number, options?: ScrollToOptions): void; export {};