import type { FC } from 'react';
import './index.less';
interface FieldMappingGroupProps {
visible: boolean;
onClose: () => void;
DSLCore: any;
onOk: (res: any) => void;
value: any;
}
declare const FieldMappingGroup: FC<FieldMappingGroupProps>;
export default FieldMappingGroup;