import * as React from "react"; export interface AlertProps extends React.HTMLAttributes { variant?: "default" | "destructive" | "warning" | "success"; } declare const Alert: React.ForwardRefExoticComponent>; declare const AlertTitle: React.ForwardRefExoticComponent & React.RefAttributes>; declare const AlertDescription: React.ForwardRefExoticComponent & React.RefAttributes>; export { Alert, AlertTitle, AlertDescription };