import { ComponentPropsWithoutRef } from 'react';
/**
* Props for the DialogContent component
* @extends ComponentPropsWithoutRef<"div">
*/
export type DialogContentProps = ComponentPropsWithoutRef<"div"> & {
/**
* When true, the content will stick below the header during scroll.
* @default false
*/
sticky?: boolean;
};
/**
* DialogContent component for the main content area of a Dialog.
*
* Features:
* - Main content container for dialog body
* - Flexible height with overflow handling
* - Optional sticky positioning below header
* - Consistent padding and spacing
* - Responsive design
* - Proper content scrolling for long content
*
* @example
* // Basic content
*
*
This is the main content of the dialog.
*
*
* @example
* // Sticky content (e.g., search field that remains visible while scrolling)
*
*
*
*/
export declare const DialogContent: import('react').ForwardRefExoticComponent, HTMLDivElement>, "ref"> & {
/**
* When true, the content will stick below the header during scroll.
* @default false
*/
sticky?: boolean;
} & import('react').RefAttributes>;