import * as React from 'react'; type State = 'error' | 'success' | 'info' | 'warning' | 'loading'; type Props = { text: string; state: State; className?: string; }; declare const Alert: React.FC; export default Alert;