import { AlertProps } from 'antd'; import React from 'react'; import './index.less'; interface AlertExtraProps extends AlertProps { titleAction?: React.ReactNode; descriptionAction?: React.ReactNode; } declare const Alert: React.FC; export { Alert };