import { VariantProps } from 'class-variance-authority'; import { ComponentProps } from 'react'; declare const alertVariants: (props?: ({ variant?: "default" | "destructive" | null | undefined; } & import('class-variance-authority/types').ClassProp) | undefined) => string; declare function Alert({ variant, ...props }: Omit, 'className'> & VariantProps): import("react").JSX.Element; declare namespace Alert { var Title: typeof AlertTitle; var Description: typeof AlertDescription; } declare function AlertTitle({ ...props }: Omit, 'className'>): import("react").JSX.Element; declare function AlertDescription({ ...props }: Omit, 'className'>): import("react").JSX.Element; export { Alert };