import Papa from 'papaparse'; export function parseCsv(content: string): Record[] { const result = Papa.parse(content, { header: true, skipEmptyLines: true }); return result.data as Record[]; }