import { SxProps } from '@mui/system'; import { OverridableComponent, OverrideProps } from '../OverridableComponent/index.js'; import { Theme } from '../styles/index.js'; import { TypographyTypeMap } from '../Typography/index.js'; import { DialogTitleClasses } from './dialogTitleClasses.js'; import * as React from 'react'; export interface DialogTitleOwnProps extends Omit { /** * The content of the component. */ children?: React.ReactNode; /** * Override or extend the styles applied to the component. */ classes?: Partial | undefined; /** * The system prop that allows defining system overrides as well as additional CSS styles. */ sx?: SxProps | undefined; } export interface DialogTitleTypeMap { props: AdditionalProps & DialogTitleOwnProps; defaultComponent: RootComponent; } /** * * Demos: * * - [Dialog](https://v7.mui.com/material-ui/react-dialog/) * * API: * * - [DialogTitle API](https://v7.mui.com/material-ui/api/dialog-title/) * - inherits [Typography API](https://v7.mui.com/material-ui/api/typography/) */ declare const DialogTitle: OverridableComponent; export type DialogTitleProps = OverrideProps, RootComponent> & { component?: React.ElementType | undefined; }; export default DialogTitle;