UNPKG

392 BTypeScriptView Raw
1import * as React from 'react';
2import { StandardProps } from '..';
3import { TypographyProps } from '../Typography';
4
5export interface DialogContentTextProps
6 extends StandardProps<TypographyProps, DialogContentTextClassKey> {}
7
8export type DialogContentTextClassKey = 'root';
9
10declare const DialogContentText: React.ComponentType<DialogContentTextProps>;
11
12export default DialogContentText;