import { TextLoader } from "./text.js"; export declare class CSVLoader extends TextLoader { column: string; constructor(filePath: string, column: string); protected parse(raw: string): Promise; }