1 | import * as React from 'react';
|
2 | import { StandardProps } from '@material-ui/core';
|
3 |
|
4 | export interface AlertTitleProps
|
5 | extends StandardProps<React.HTMLAttributes<HTMLDivElement>, AlertTitleClassKey> {
|
6 | /**
|
7 | * The content of the component.
|
8 | */
|
9 | children?: React.ReactNode;
|
10 | }
|
11 |
|
12 | export type AlertTitleClassKey = 'root';
|
13 |
|
14 | /**
|
15 | *
|
16 | * Demos:
|
17 | *
|
18 | * - [Alert](https://mui.com/components/alert/)
|
19 | *
|
20 | * API:
|
21 | *
|
22 | * - [AlertTitle API](https://mui.com/api/alert-title/)
|
23 | */
|
24 | export default function AlertTitle(props: AlertTitleProps): JSX.Element;
|