import { HTMLAttributes, PropsWithChildren } from "react";
import { StatusVariant } from "../../@types/Colors";
interface IAlert extends PropsWithChildren> {
variant?: StatusVariant;
}
export declare const Alert: import("react").ForwardRefExoticComponent>;
export {};