import { ComponentPropsWithoutRef } from 'react';
import { DataTrackingId } from '../../types';
/**
* Props for the DrawerHeader component
* @extends ComponentPropsWithoutRef<"header">
*/
export type DrawerHeaderProps = ComponentPropsWithoutRef<"header"> & DataTrackingId;
/**
* Header component for the drawer that displays a title and close button.
*
* Features:
* - Displays the drawer title as a headline
* - Includes an accessible close button
* - Sticky positioning at the top of the drawer
* - Proper semantic HTML structure
* - Accessible with proper ARIA attributes
* - Consistent styling with the design system
* - Automatic close functionality
*
* @example
* Settings
*/
export declare const DrawerHeader: import('react').ForwardRefExoticComponent, HTMLElement>, "ref"> & DataTrackingId & import('react').RefAttributes>;