/** * Compatible scrollTo method. * Fallback to scrollTop when scrollTo() method is not supported by browser */ declare type ScrollElement = HTMLElement | undefined | null; export declare function scrollTo(elm: ScrollElement, options: ScrollToOptions): void; export declare function scrollTo(elm: ScrollElement, left: number, top: number): void; export {}; //# sourceMappingURL=scroll-to.d.ts.map