import { OnDestroy, OnInit } from '@angular/core';
import { ToastrService } from '../services/toastService/toastr.service';
export declare class ToastrComponent implements OnInit, OnDestroy {
    private toastrService;
    toastr: {
        message: string;
        type: string;
    }[];
    private toastSubscription;
    constructor(toastrService: ToastrService);
    ngOnInit(): void;
    ngOnDestroy(): void;
}
