import * as React from 'react';
interface IProps {
    Color?: 'alert-primary' | 'alert-secondary' | 'alert-success' | 'alert-danger' | 'alert-warning' | 'alert-info' | 'alert-light';
    Style?: React.CSSProperties;
    ShowX?: boolean;
    ReTrigger?: unknown;
    OnClick?: (e: React.MouseEvent<HTMLButtonElement, MouseEvent>) => void;
}
declare const Alert: (props: React.PropsWithChildren<IProps>) => JSX.Element;
export default Alert;
