import { AfterContentInit, ElementRef, OnChanges, OnInit, SimpleChanges } from '@angular/core';
export declare class IconComponent implements OnInit, AfterContentInit, OnChanges {
    constructor();
    startIcon: ElementRef;
    endIcon: ElementRef;
    iconContainer: ElementRef;
    active: boolean;
    easing: string;
    duration: number;
    svgMorpheus: any;
    containerId: string;
    ngOnInit(): void;
    ngAfterContentInit(): void;
    ngOnChanges(changes: SimpleChanges): void;
    doTransition(): void;
}
