import React from 'react'; import { CsvColumn } from '../types'; import { ValidationResult } from '../utils/Validator'; interface ValidationStepProps { validationResults: ValidationResult[]; templateFields: CsvColumn[]; onCellEdited: (rowIndex: number, fieldKey: string, newValue: string) => void; onRemoveRow: (index: number) => void; onExportJson: () => void; onExportCsv: () => void; defaultRowsPerPage: number; } export declare const ValidationStep: React.FC; export {}; //# sourceMappingURL=ValidationStep.d.ts.map