import { FC } from 'react'; import type { AlertProps } from 'antd/lib/alert'; import './style'; declare type IProps = Omit & { type?: AlertProps['type'] | 'failed'; }; declare const AlertMessage: FC; export default AlertMessage;