import * as React from 'react'; import * as DialogPrimitive from '@radix-ui/react-dialog'; declare function DialogContent({ className, children, showCloseButton, ...props }: React.ComponentProps & { showCloseButton?: boolean; }): React.JSX.Element; export { DialogContent };