import * as React from 'react'; import { type VariantProps } from 'class-variance-authority'; /** * Alert - 警告提示 * * @description 用于显示重要的警告或信息提示,支持多种状态和可关闭功能 */ declare const Alert: React.ForwardRefExoticComponent & VariantProps<(props?: ({ variant?: "default" | "destructive" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string> & { /** * 状态 */ status?: "success" | "error" | "warning" | "info"; /** * 是否可以关闭 */ closable?: boolean; } & React.RefAttributes>; declare const AlertTitle: React.ForwardRefExoticComponent & React.RefAttributes>; declare const AlertDescription: React.ForwardRefExoticComponent & React.RefAttributes>; export { Alert, AlertTitle, AlertDescription };