import { GradeDistributionCSVRow } from '@cougargrades/types'; export declare class CSVReader { filePath: string; numberOfLines: number; constructor(filePath: string); eachRow(callback: (row: object) => any): Promise; allRows(): Promise; }