///
import { type ModalProps, type DialogTitleProps as MuiDialogTitleProps } from '@mui/material';
import { type WithoutEmotionSpecific } from '../types';
export type DialogTitleProps = WithoutEmotionSpecific & {
onClose?: ModalProps['onClose'];
};
export declare const DialogTitle: ({ children, onClose, ...props }: DialogTitleProps) => JSX.Element;