import { FC } from 'react'; import { HeadingProps } from '../../../Heading'; export type DrawerTitleProps = HeadingProps; /** * `DrawerTitle` is a presentational subcomponent of `Drawer` used to render * the main title of the drawer. * * It composes the `Heading` primitive and enforces semantic structure by * rendering as an `h3` element with a predefined size suitable for drawer * headers. */ export declare const DrawerTitle: FC;