import { HTMLAttributes } from 'react'; interface DialogTitleProps extends HTMLAttributes { sx?: unknown; classes?: Record; } /** * MUI-free dialog title: a semantic `

` with the previous SCSS metrics as Tailwind. TASK-101. */ export declare const StyledDialogTitle: ({ children, className, sx, style, classes: _classes, ...rest }: DialogTitleProps) => JSX.Element | null; export {};