import React from 'react'; import { PopconfirmProps } from 'antd'; import './index.less'; type confirmType = 'primary' | 'warning' | 'error'; interface PopoverExtraProps { content?: React.ReactNode; type?: confirmType; } declare const Popconfirm: (props: PopconfirmProps & PopoverExtraProps) => React.JSX.Element; export { Popconfirm };