import { SweetAlertResult } from "sweetalert2"; export interface IToasterService { ShowDangerToast(text: string): void; ShowSuccessToast(text: string): void; ShowInfoToast(text: string): void; ShowWarningToast(text: string): void; ShowConfirmToast(title: string, text?: string): Promise; ShowConfirmToastWithOptions(title: string, confirmText: string, otherText: string, text?: string): Promise>; } //# sourceMappingURL=iToasterService.d.ts.map