Files
goTorrent/goTorrentWebUI/node_modules/material-ui/Dialog/DialogTitle.d.ts

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;