import React from 'react'; export interface DialogTitleProps extends React.HTMLProps { className?: string; tag?: string; id?: string; } declare const DialogTitle: (props: DialogTitleProps) => React.ReactElement; declare type DialogTitle = React.ReactElement; export default DialogTitle;