import { TypographyTypeMap } from "../Typography"; import { Theme } from "../styles"; import { DialogContentTextClasses } from "./dialogContentTextClasses"; import { SxProps } from "@suid/system"; import * as ST from "@suid/types"; export type DialogContentTextTypeMap

= { name: "MuiDialogContentText"; selfProps: { /** * Override or extend the styles applied to the component. */ classes?: Partial; /** * The system prop that allows defining system overrides as well as additional CSS styles. */ sx?: SxProps; }; props: P & DialogContentTextTypeMap["selfProps"]; defaultComponent: D; }; export type DialogContentTextProps = ST.OverrideProps, D>; export default DialogContentTextProps; //# sourceMappingURL=DialogContentTextProps.d.ts.map