import React from "react";
export declare type AlertVariant = "error" | "warning" | "success" | "info";
export interface AlertProps {
className?: string;
close?: boolean;
variant: AlertVariant;
title?: string;
}
export declare const Alert: React.FC<AlertProps>;