import { VariantProps } from 'class-variance-authority'; import * as React from 'react'; declare const alertVariants: (props?: ({ variant?: "success" | "destructive" | "default" | "info" | "warning" | null | undefined; } & import('class-variance-authority/dist/types').ClassProp) | undefined) => string; declare function Alert({ className, variant, borderHighlight, ...props }: React.ComponentProps<'div'> & VariantProps & { borderHighlight?: boolean; }): React.JSX.Element; declare function AlertTitle({ className, ...props }: React.ComponentProps<'div'>): React.JSX.Element; declare function AlertDescription({ className, ...props }: React.ComponentProps<'div'>): React.JSX.Element; export { Alert, AlertDescription, AlertTitle };