import { FC, HTMLAttributes } from 'react'; export type DialogHeaderProps = HTMLAttributes; /** The DialogHeader component renders the top section of a modal dialog, typically containing a title and an optional close button, and supports accessibility via headingId for screen reader labeling */ export declare const DialogHeader: FC;