import { FC, HTMLAttributes, Ref } from 'react'; export interface DrawerHeaderProps extends HTMLAttributes { /** * Ref forwarded to the drawer header element. * Useful for measuring, scrolling into view, or focus management. */ ref?: Ref; } /** The DrawerHeader component defines the top section of a drawer, typically used to display a title, actions, or a close button, and supports custom layout through class names and wrappers */ export declare const DrawerHeader: FC;