/// interface ScrollOptions { when?: number; which?: string; element?: HTMLElement; how?: 'scrollIntoViewIfNeeded' | 'scrollIntoView'; center?: boolean | ScrollIntoViewOptions; } export declare const scrollIntoView: (opts?: ScrollOptions) => NodeJS.Timeout; export {};