import React from 'react'; type ToastVariant = 'success' | 'error' | 'info'; interface ToastProps { id: number; title?: string; message: string; variant?: ToastVariant; onClose: (id: number) => void; } declare const Toast: React.FC; export default Toast; export type { ToastVariant, ToastProps };