import React from 'react'; export default interface PopConfirmProps { message: string; description?: string | React.ReactElement; confirmText?: string; cancelText?: string; tipIcon?: JSX.Element; onCancel?: (e: any) => void; onConfirm?: (e: any) => void; extraCls?: string; visible?: boolean; translation?: { [key: string]: any; }; }