import { FC, HTMLAttributes, Ref } from 'react'; export interface DrawerContentProps extends HTMLAttributes { /** * Ref forwarded to the drawer content element. * Useful for measuring, focusing, or animation hooks. */ ref?: Ref; /** * Adds a shadow to the drawer panel for depth and separation. */ shadowed?: boolean; /** * Makes the drawer stretch to fill the full width of its parent container. */ fullWidth?: boolean; /** * Makes the drawer stretch to fill the full height of its parent container. */ fullHeight?: boolean; } /** The DrawerContent component is the main content area of a drawer, supporting scrollable layouts, optional headers, visual overlays, and full-size configurations for flexible and responsive panel design */ export declare const DrawerContent: FC;