import { AlertProps } from 'antd';
import { FC, ReactNode } from 'react';
declare const Alert: FC<AlertProps & {
    children?: ReactNode;
}>;
export default Alert;
