import * as class_variance_authority_types from 'class-variance-authority/types'; import * as React from 'react'; import { VariantProps } from 'class-variance-authority'; declare const alertVariants: (props?: ({ variant?: "link" | "primary" | "secondary" | "success" | "warning" | "danger" | "info" | "light" | "dark" | "accent" | "destructive" | "muted" | "ghost" | null | undefined; appearance?: "light" | "solid" | null | undefined; } & class_variance_authority_types.ClassProp) | undefined) => string; interface AlertProps extends React.HTMLAttributes, VariantProps { } type VariantType = NonNullable['variant']>; declare function Alert({ className, variant, ...props }: React.ComponentProps<'div'> & VariantProps): 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; declare function AlertAction({ className, ...props }: React.ComponentProps<'div'>): React.JSX.Element; export { Alert, AlertAction, AlertDescription, type AlertProps, AlertTitle, type VariantType };