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;
}
declare const BatchEdit: React.FC<BatchEditProps>;
export default BatchEdit;
