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;
}
declare const Alert: ({ customClass, alertId, showAlrt, alertType, alertTitle, alertContent, alertIcon, }: Props) => import("react/jsx-runtime").JSX.Element;
export default Alert;
