import React from "react"; import "./index.less"; interface BatchEditorProps { columns: any[]; dataSource: any[]; onChange: (value: any) => void; rowKey: string; otherTableProps: any; } declare const BatchEditor: (props: BatchEditorProps) => React.JSX.Element; export default BatchEditor;