import * as React from "react"; export declare type AlertVariant = "error" | "info" | "success" | "warning"; export interface AlertProps extends React.ComponentPropsWithoutRef<"div"> { /** * The content for the Alert. */ children: string; /** * If the Alert can close. * * @default false */ closeable?: boolean; /** * The variant for the Alert. * * @default "error" */ variant?: AlertVariant; } /** * @public * * @description * * The Alert component is a notification towards an action a * user has recently taken. */ export declare const Alert: React.FC;