import * as React from 'react'; declare type Props = { children: React.ReactNode; }; /** * * @param props * @constructor */ declare const DialogContent: (props: Props) => JSX.Element; export default DialogContent;