import { ComponentPropsWithoutRef } from 'react';
/**
* Props for the DrawerContent component
* @extends ComponentPropsWithoutRef<"div">
*/
export type DrawerContentProps = ComponentPropsWithoutRef<"div">;
/**
* Content container for the drawer that holds the main content area.
*
* Features:
* - Flexible content area with proper spacing
* - Scrollable content when needed
* - Proper semantic HTML structure
* - Accessible with proper ARIA attributes
* - Consistent styling with the design system
* - Supports all standard div element props
* - Responsive design that adapts to content
* - Proper focus management
*
* @example
*
*