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