import { BehaviorSubject } from 'rxjs'; import * as i0 from "@angular/core"; export interface ToastInterface { type: string; title: string; description: string; icon: boolean; } export declare class ToastService { show: BehaviorSubject; constructor(); open(type: string, title: string, description: string, icon?: boolean): void; close(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }