import { ComponentPropsWithoutRef } from 'react'; /** * Props for the DrawerContent component * @extends ComponentPropsWithoutRef<"div"> */ export type DrawerContentProps = ComponentPropsWithoutRef<"div"> & { /** * When true, the content will stick below the header during scroll. * @default false */ sticky?: boolean; }; /** * Content container for the drawer that holds the main content area. * * Features: * - Flexible content area with proper spacing * - Scrollable content when needed * - Optional sticky positioning below header * - 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 * // Basic content * *

This is the main content of the drawer.

*
* * @example * // Sticky content (e.g., search field that remains visible while scrolling) * * * */ export declare const DrawerContent: import('react').ForwardRefExoticComponent, HTMLDivElement>, "ref"> & { /** * When true, the content will stick below the header during scroll. * @default false */ sticky?: boolean; } & import('react').RefAttributes>;