/// <reference types="react" />
import { AlertTitleProps as MUIAlertTitleProps } from '@material-ui/lab/AlertTitle';
interface AlertTitleProps extends MUIAlertTitleProps {
}
declare const AlertTitle: {
    (props: AlertTitleProps): JSX.Element;
    displayName: string;
};
export default AlertTitle;
