import { ComponentPropsWithoutRef } from 'react';
/**
* Props for the DialogContent component
* @extends ComponentPropsWithoutRef<"div">
*/
export type DialogContentProps = ComponentPropsWithoutRef<"div">;
/**
* DialogContent component for the main content area of a Dialog.
*
* Features:
* - Main content container for dialog body
* - Flexible height with overflow handling
* - Consistent padding and spacing
* - Responsive design
* - Proper content scrolling for long content
*
* @example
*
*