import { TooltipProps } from 'antd'; import React from 'react'; import './index.less'; declare type ConfirmProps = { onOk?: () => void; onCancel?: () => void; children: React.ReactChildren; title?: string; subTitle?: string; subTips?: string; renderContent?: () => React.ReactElement; width?: number; className?: string; wrapRef?: any; zIndex?: TooltipProps['zIndex']; onVisibleChange?: TooltipProps['onVisibleChange']; visible?: TooltipProps['visible']; }; declare const ConfirmPopover: (props: ConfirmProps) => JSX.Element; export default ConfirmPopover;