import { ElementRef } from '@angular/core'; import { SmoothScrollManager } from './smooth-scroll-manager'; import { SmoothScrollElement, SmoothScrollOptions, SmoothScrollToOptions } from './smooth-scroll.model'; export declare class SmoothScroll { private element; private smoothScroll; constructor(element: ElementRef, smoothScroll: SmoothScrollManager); scrollTo(options: SmoothScrollToOptions): Promise; scrollToElement(target: SmoothScrollElement, options: SmoothScrollOptions): Promise; }