import { OnDestroy, OnInit } from '@angular/core';
import { AnimationEvent } from '@angular/animations';
import { ToastAnimationState } from './toast-animation';
import { ToastConfig, ToastData } from './toast-config';
import { ToastRef } from './toast-ref';
import { ToastService } from './toast.service';
import * as i0 from "@angular/core";
export declare class ToastComponent implements OnInit, OnDestroy {
    readonly data: ToastData;
    readonly ref: ToastRef;
    readonly toastService: ToastService;
    iconClass: string;
    toastClass: string;
    animationState: ToastAnimationState;
    config: ToastConfig;
    private _intervalId;
    constructor(data: ToastData, ref: ToastRef, toastService: ToastService);
    ngOnInit(): void;
    closeToast(): void;
    onFadeFinished(event: AnimationEvent): void;
    ngOnDestroy(): void;
    private close;
    static ɵfac: i0.ɵɵFactoryDeclaration<ToastComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<ToastComponent, "systelab-toast", never, {}, {}, never, never, false, never>;
}
