import { AlertProps } from 'antd';
import { FC } from 'react';
import { ALERT } from '../../Types';
export interface IAlert {
    ctype: typeof ALERT;
    props: AlertProps;
}
declare const Alert: FC<IAlert>;
export default Alert;
