import { type VariantProps } from "class-variance-authority"; import { type HTMLAttributes } from "react"; /** * Alert component for displaying important messages or notifications. */ declare const Alert: import("react").ForwardRefExoticComponent & VariantProps<(props?: ({ variant?: "default" | "destructive" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string> & import("react").RefAttributes>; /** * AlertTitle component for displaying the title of an Alert. */ declare const AlertTitle: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; /** * AlertDescription component for displaying the description text of an Alert. */ declare const AlertDescription: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export { Alert, AlertTitle, AlertDescription };