import { SweetAlertOptions, SweetAlertResult } from 'sweetalert2'; import 'jquery-toast-plugin'; export declare class Alerts { static log(message: any, type?: 'message' | 'error' | 'warning' | 'info'): void; static error(message: string, title?: string, hideAfter?: number): void; static warning(message: string, title?: string, hideAfter?: number): void; static message(message: string, title?: string, hideAfter?: number): void; static success(message: string, title?: string, hideAfter?: number): void; static alert(message: string, title?: string, icon?: string, hideAfter?: number): void; static sweetAlert(options: SweetAlertOptions, callback: (result: SweetAlertResult) => void): void; static confirm(options: SweetAlertOptions, callback: (result: SweetAlertResult) => void): void; static prompt(options: SweetAlertOptions, callback: (result: SweetAlertResult) => void): void; log(message: string, type?: 'message' | 'error' | 'warning' | 'info'): void; error(message: string, title?: string, hideAfter?: number): void; warning(message: string, title?: string, hideAfter?: number): void; message(message: string, title?: string, hideAfter?: number): void; success(message: string, title?: string, hideAfter?: number): void; alert(message: string, title?: string, icon?: string, hideAfter?: number): void; sweetAlert(options: SweetAlertOptions, callback: (result: SweetAlertResult) => void): void; confirm(options: SweetAlertOptions, callback: (result: SweetAlertResult) => void): void; prompt(options: SweetAlertOptions, callback: (result: SweetAlertResult) => void): void; }