import * as class_variance_authority_types from 'class-variance-authority/types'; import * as React from 'react'; import { ReactElement } from 'react'; import { VariantProps } from 'class-variance-authority'; /** * Alert — WealthX Design System * Figma: https://www.figma.com/design/9V9F0NGVsif8LGmEhVjOcT/Design-System---shadcn?node-id=72-2633 * * Base: official shadcn alert (npx shadcn\@latest add alert) * WealthX overrides: sharp corners (no rounded-lg), added warning/success/info variants */ declare const alertVariants: (props?: ({ variant?: "default" | "destructive" | "success" | "warning" | "info" | null | undefined; } & class_variance_authority_types.ClassProp) | undefined) => string; type AlertProps = React.ComponentProps<"div"> & VariantProps; declare function Alert({ className, variant, ...props }: AlertProps): ReactElement; type AlertTitleProps = React.ComponentProps<"div">; declare function AlertTitle({ className, ...props }: AlertTitleProps): ReactElement; type AlertDescriptionProps = React.ComponentProps<"div">; declare function AlertDescription({ className, ...props }: AlertDescriptionProps): ReactElement; export { Alert, AlertDescription, type AlertDescriptionProps, type AlertProps, AlertTitle, type AlertTitleProps };