import * as React from 'react'; import { IPopConfirmFunPorps } from './interface'; export declare enum PLACEMENT { TOP = "top", LEFT = "left", RIGHT = "right", BOTTOM = "bottom" } interface PopConfirmFunType extends React.FC { newInstance: Function; } declare const PopConfirmFun: PopConfirmFunType; export default PopConfirmFun;