import { ElementRef, EventEmitter, OnDestroy, OnInit, Renderer2 } from '@angular/core'; export declare class PaginationScrollDirective implements OnInit, OnDestroy { private elementRef; private renderer; private subscriptions; change: EventEmitter; scrollDirection: 'vertical' | 'horizontal'; onScroll(): void; constructor(elementRef: ElementRef, renderer: Renderer2); ngOnInit(): void; ngOnDestroy(): void; checkVerticalScroll(): void; checkHorizontalScroll(): void; }