import React from 'react'; const Alert = ({ className, title, }: { className?: string; title?: string; }) => ( ); export default Alert;