import { BaseAlert } from "../../base-alert"; type GlobalAlertTitleProps = BaseAlert.TitleProps; /** * Title component for GlobalAlert. Remember to use correct heading-level with the `as` prop. * @see 🏷️ {@link GlobalAlertTitleProps} * @example * ```jsx * * * Info title * * * ``` */ const GlobalAlertTitle = BaseAlert.Title; export { GlobalAlertTitle }; export type { GlobalAlertTitleProps };