import React from "react"; interface BaseAlertTitleProps extends React.HTMLAttributes { children: React.ReactNode; /** * Changes the HTML element used for the title. * @default "h2" */ as?: "h2" | "h3" | "h4" | "h5" | "h6" | "div"; } /** * Title component for BaseAlert. Remember to use correct heading-level with the `as` prop. * @see 🏷️ {@link BaseAlertTitleProps} * @example * ```jsx * * * Info title * * * ``` */ declare const BaseAlertTitle: React.ForwardRefExoticComponent>; export { BaseAlertTitle }; export type { BaseAlertTitleProps };