import React from 'react'; import { AlertProps } from 'antd'; import './index.less'; export interface PisellAlertProps extends AlertProps { /** 是否展示忽略按钮 */ showDismiss?: boolean; /** 忽略按钮内容 */ dismiss?: React.ReactNode; /** 是否展示行为按钮 */ showView?: boolean; /** 行为按钮内容 */ view?: React.ReactNode; /** 行为按钮点击事件 */ onViewClick?: (e: any) => void; } /** * PisellAlert警告提示组件 * @param props * @constructor */ declare const PisellAlert: (props: PisellAlertProps) => false | React.JSX.Element; export default PisellAlert;