import * as React from 'react'; import { InternalStandardProps as StandardProps } from '..'; export interface AlertTitleProps extends StandardProps> { /** * The content of the component. */ children?: React.ReactNode; /** * Override or extend the styles applied to the component. */ classes?: { /** Styles applied to the root element. */ root?: string; }; } export type AlertTitleClassKey = keyof NonNullable; /** * * Demos: * * - [Alert](https://material-ui.com/components/alert/) * * API: * * - [AlertTitle API](https://material-ui.com/api/alert-title/) */ export default function AlertTitle(props: AlertTitleProps): JSX.Element;