export interface CsvFileValidationErrors { tooLarge?: { maxSize: number; }; tooManyEntries?: { maxEntries: number; }; empty?: boolean; notParsable?: boolean; }