import { OnInit, ElementRef } from '@angular/core'; import { BaseDirective } from './base.directive'; import { AnimationLoader } from './animation-loader'; import { LottieEventsFacade } from './events-facade'; export declare class LottieDirective extends BaseDirective implements OnInit { private host; private eventsFacade; constructor(platformId: string, host: ElementRef, eventsFacade: LottieEventsFacade, animationLoader: AnimationLoader); ngOnInit(): void; }