18 lines
371 B
TypeScript
18 lines
371 B
TypeScript
import * as React from 'react';
|
|
import { StandardProps } from '..';
|
|
|
|
export interface DialogTitleProps extends StandardProps<
|
|
React.HTMLAttributes<HTMLDivElement>,
|
|
DialogTitleClassKey
|
|
> {
|
|
disableTypography?: boolean;
|
|
}
|
|
|
|
export type DialogTitleClassKey =
|
|
| 'root'
|
|
;
|
|
|
|
declare const DialogTitle: React.ComponentType<DialogTitleProps>;
|
|
|
|
export default DialogTitle;
|