import React from 'react'; export interface DialogTitleProps { children?: React.ReactNode; onClose?: () => void; [x: string]: any; } export declare function CloseableDialogTitle(props: DialogTitleProps): JSX.Element;