interface AlertProps {
    message: string;
    description?: string;
    type?: "success" | "info" | "warning" | "error";
    showIcon?: boolean;
}
declare const Alert: React.FC<AlertProps>;
export default Alert;
