import LOCALE from './locale/zh_CN'; export interface PopConfirmProps { /** @ignore */ locale?: typeof LOCALE; /** 确认按钮回调 */ onConfirm?: () => void; /** 取消按钮回调 */ onCancel?: () => void; } declare const PopConfirm: ({ locale: _locale, onConfirm: _onConfirm, onCancel: _onCancel, popup: _popup, defaultVisible, visible: _visible, onVisibleChange: _onVisibleChange, ...rest }: PopConfirmProps & any) => JSX.Element; export default PopConfirm;