import React from 'react'; import { StyledComponentClass } from 'styled-components'; import { Theme } from '../types'; interface DialogTitleProps { children: any; key?: string; type?: string; showCloseIcon?: boolean; } interface DialogTitleComp extends StyledComponentClass & React.HTMLAttributes & DialogTitleProps, Theme> { } declare const DialogTitle: DialogTitleComp; export default DialogTitle;