import React from 'react'; import './index.less'; interface BatchEditProps { visible: boolean; onOk: (data: any, keys?: string[]) => void; onCancel: () => void; isCascade?: boolean; titleKey?: string; subTitleKey?: string; wrapRef?: any; } declare const BatchEdit: React.FC; export default BatchEdit;