import type { ComponentPropsWithoutRef } from 'react'; type AlertTitleProps = ComponentPropsWithoutRef<'div'>; declare function AlertTitle({ className, ...props }: AlertTitleProps): import("react/jsx-runtime").JSX.Element; export type { AlertTitleProps }; export default AlertTitle;