import { FC, HTMLAttributes, Ref } from 'react';
export interface SheetHeaderProps extends HTMLAttributes {
/**
* Ref forwarded to the root header element.
* Useful for focus management, measurement, or dynamic styling.
*/
ref?: Ref;
}
/** The SheetHeader component defines the top section of a sheet, commonly used for titles, actions, or navigation elements. It provides structural hierarchy, improves accessibility, and supports custom styling for consistent layout and visual clarity. */
export declare const SheetHeader: FC;