import { ElementRef, OnInit, AfterViewInit, EventEmitter, OnDestroy } from '@angular/core';
export declare class TccInfinityScrollDirective implements OnInit, OnDestroy, AfterViewInit {
    private anchor;
    scrolled: EventEmitter<any>;
    ScrollEnabled: boolean;
    ViewContainerDistance: number;
    private observer;
    constructor(anchor: ElementRef);
    ngOnInit(): void;
    ngAfterViewInit(): void;
    ngOnDestroy(): void;
}
