export interface ToastProps { message: string; type: "success" | "warning" | "error"; onDismiss: () => void; }