/** * Toast Component * Notification messages */ export interface ToastOptions { duration?: number; position?: "top-right" | "top-left" | "bottom-right" | "bottom-left" | "top-center" | "bottom-center"; type?: "success" | "error" | "info" | "warning"; closable?: boolean; } export declare class Toast { private static containers; private static getContainer; static show(message: string, options?: ToastOptions): void; static dismiss(toast: HTMLElement): void; static success(message: string, options?: Omit): void; static error(message: string, options?: Omit): void; static info(message: string, options?: Omit): void; static warning(message: string, options?: Omit): void; static clearAll(position?: string): void; }