import React$1 from 'react'; type AlertSeverity = 'success' | 'info' | 'warning' | 'error'; type AlertVariant = 'default' | 'filled' | 'outlined'; interface AlertProps extends React.AllHTMLAttributes { severity?: AlertSeverity; variant?: AlertVariant; color?: AlertSeverity | 'inherit'; actionElement?: React.ReactNode; icon?: React.ReactNode; alertTitle?: string | boolean; open?: boolean; children?: React.ReactNode; iconClassName?: string; bodyClassName?: string; titleClassName?: string; textClassName?: string; } declare const Alert: React$1.ForwardRefExoticComponent>; export { type AlertProps, Alert as default };