/**
* html/alert — variant-styled alert/message container
.
*
* Used by the Message component. Named "alert" to avoid collision with
* the alert.tsx component file.
*/
import { type HTMLAttributes } from "react";
import { type VariantProps } from "class-variance-authority";
export declare const alertVariants: (props?: ({
variant?: "error" | "warning" | "success" | "info" | "neutral" | null | undefined;
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
export type AlertVariant = NonNullable["variant"]>;
export type AlertElProps = HTMLAttributes & VariantProps;
export declare const AlertEl: import("react").ForwardRefExoticComponent & VariantProps<(props?: ({
variant?: "error" | "warning" | "success" | "info" | "neutral" | null | undefined;
} & import("class-variance-authority/types").ClassProp) | undefined) => string> & import("react").RefAttributes>;
export declare const AlertTitleEl: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;
export declare const AlertDescriptionEl: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;
//# sourceMappingURL=alert.d.ts.map