import { Theme } from ".."; import { DialogTitleClasses } from "./dialogTitleClasses"; import { SxProps } from "@suid/system"; import * as ST from "@suid/types"; import { JSXElement } from "solid-js"; export type DialogTitleTypeMap

= { name: "MuiDialogTitle"; selfProps: { /** * The content of the component. */ children?: JSXElement; /** * 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 & DialogTitleTypeMap["selfProps"] & ST.PropsOf<"h1">; defaultComponent: D; }; export type DialogTitleProps = ST.OverrideProps, D>; export default DialogTitleProps; //# sourceMappingURL=DialogTitleProps.d.ts.map