/** * Show toast notification */ export function showToast(message: any, type?: string, duration?: null): void; /** * Hide all toasts immediately and cancel pending animations */ export function hideToast(): void; /** * Show success toast with checkmark */ export function showSuccessToast(message: any): void; /** * Show error toast with detailed message */ export function showErrorToast(message: any, details?: null): void; /** * Show info toast */ export function showInfoToast(message: any): void; /** * Show warning toast (for HTTPS/clipboard issues) */ export function showWarningToast(message: any): void; //# sourceMappingURL=toast.d.ts.map