import type Toaster from "../lib/Toast/Toaster";
declare class ToastService {
    private static toast;
    static attachToastElement(toast: Toaster): void;
    private static show;
    static success(options?: any): void;
    static error(options?: any): void;
    static info(options?: any): void;
    static warning(options?: any): void;
}
export default ToastService;
