import { OnInit } from '@angular/core'; import { ToastService } from "../services/toast.service"; import * as i0 from "@angular/core"; export interface ToastMessage { title: string; description?: string; level: 'info' | 'warning' | 'error' | 'success'; } export declare class ToastComponent implements OnInit { private toastService; toasts: ToastMessage[]; constructor(toastService: ToastService); ngOnInit(): void; removeToast(toast: ToastMessage): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }