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