import { CsvReadOptions, Dataframe } from "./csv"; import { ToDictionaryOptions } from "./text"; interface Csv { read: (csvData: string, options: CsvReadOptions) => Dataframe; } interface DataFrameExport { addColumn: (df: Dataframe, label: string, map: (row: string[], object: Record) => any) => void; addRow: (df: Dataframe, data: string[] | ((head: string[]) => string[])) => void; } interface Text { createDictionary: (text: string, options?: ToDictionaryOptions) => Record; sanitize: (text: string, replacer?: string) => string; createText: (array: number[], dictionary: Record, seperator?: string) => string; codify: (dictionary: Record, data: string, onNotFound?: string, seperator?: string) => number[]; } declare const csv: Csv; declare const dataframe: DataFrameExport; declare const text: Text; export { csv, dataframe, text }; //# sourceMappingURL=index.d.ts.map