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 {};