interface CsvReadOptions { delimiter?: string; rowDelimiter?: string; head?: string[]; sanitizeWith?: RegExp; } interface Dataframe { head: string[]; body: string[][]; print: (self: Dataframe, maxRows?: number, start?: number, only?: string[]) => void; describe: (self: Dataframe) => void; } declare const main: (data: string, options?: CsvReadOptions) => Dataframe; export default main; export type { Dataframe, CsvReadOptions }; //# sourceMappingURL=read.d.ts.map