import { AfterContentInit, ElementRef, OnDestroy } from "@angular/core";
export declare class NgxAutoScroll implements AfterContentInit, OnDestroy {
    lockYOffset: number;
    observeAttributes: string;
    private nativeElement;
    private isLocked;
    private mutationObserver;
    constructor(element: ElementRef);
    getObserveAttributes(): boolean;
    ngAfterContentInit(): void;
    ngOnDestroy(): void;
    forceScrollDown(): void;
    private scrollDown();
    private scrollHandler();
}
