declare class ToastService { private toastManagerId; constructor(); create({ title, duration, position, color, size, caption, typeColor, dismiss, type }: { title: any; duration: any; position: any; color: any; size: any; caption: any; typeColor: any; dismiss: any; type: any; }): { show: () => void; }; show(toastEl: any): void; handleList(): void; } export declare const toastService: ToastService; export {};