import { i as CellTypeInferenceSink } from "../cell-typing-BQ-xQ5X5.js"; import { ContentDocument } from "document-schema.js"; //#region src/csv/read.d.ts interface ReadCsvContentOptions { readonly delimiter?: string; readonly onCellTypeInference?: CellTypeInferenceSink; } declare function readCsvContent(text: string, options?: ReadCsvContentOptions): ContentDocument; //#endregion export { ReadCsvContentOptions, readCsvContent };