import React from 'react'; import { Field } from '@teamix/ui'; import { IFieldItem } from '@/components/Deploy/types'; import { BatchStep } from '@/types'; declare const BatchEdit: React.FC<{ targetReplica?: number; batches?: IFieldItem; batchSteps: number[]; taskName: string; scalType?: string; field: Field; onChange: (v: number[]) => void; enableTypeSwitch?: boolean; batchStepType?: string; setBatchStepType?: (type: BatchStep.type) => void; disabled?: boolean; }>; export default BatchEdit;