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