import React from "react"; import "./Alert.scss"; export type color = "warning" | "success" | "danger"; export interface Props { alertId?: any; customClass?: any; showAlrt?: boolean; alertType?: color; alertTitle?: string; alertContent?: string; alertIcon?: any; style?: React.CSSProperties; } declare const Alert: ({ customClass, alertId, showAlrt, alertType, alertTitle, alertContent, alertIcon, style, }: Props) => import("react/jsx-runtime").JSX.Element; export default Alert;