import { ToastItem } from '../components/Toast/ToastContainer'; export declare const useToast: () => { toasts: ToastItem[]; showToast: (message: string, type?: "success" | "error" | "info", duration?: number) => string; showSuccess: (message: string, duration?: number) => string; showError: (message: string, duration?: number) => string; showInfo: (message: string, duration?: number) => string; removeToast: (id: string) => void; };