import { ElementRef } from '@angular/core';
import { AnimationsService } from '../services/animations.service';
export declare class AnimatedDirective {
    private el;
    private _animationsService;
    set animAted(options: {
        animation?: any;
        time?: any;
    });
    time: number;
    animation: string;
    constructor(el: ElementRef, _animationsService: AnimationsService);
    animate(options?: {
        animation?: any;
        time?: any;
    }): void;
    private createPlayer;
}
