@surveycake/rc
Version:
react component of surveycake
10 lines (9 loc) • 309 B
TypeScript
/// <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;