import { JsonToToonOptions } from './core.js'; export interface CsvToToonOptions extends Omit { /** * Character used to separate fields. Defaults to comma. */ delimiter?: string; /** * If true, the first row is treated as the header row. * If false, the output will be a list of arrays instead of a tabular array. * Defaults to true. */ hasHeader?: boolean; } export declare function csvToToon(csv: string, options?: CsvToToonOptions): string; export interface CsvToJsonOptions { delimiter?: string; hasHeader?: boolean; maxInputLength?: number; } export declare function csvToJson(csv: string, options?: CsvToJsonOptions): unknown[]; //# sourceMappingURL=csv.d.ts.map