import { ElementRef, OnChanges, OnInit, OnDestroy } from '@angular/core'; export declare class Scroll implements OnInit, OnChanges, OnDestroy { private element; scroll: Function; private eventFunc; constructor(element: ElementRef); ngOnInit(): void; ngOnChanges(changes: any): void; ngOnDestroy(): void; }