import { AlertProps } from 'antd'; import './style/index.less'; interface DAlertProps { children?: any; } declare function DAlert(props: AlertProps & DAlertProps): JSX.Element; declare namespace DAlert { var ErrorBoundary: typeof import("antd/lib/alert/ErrorBoundary").default; } export default DAlert;