/** * Copyright (c) 2017 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose */ import * as Data from './data-model.js'; import { ReaderResult as Result } from '../result.js'; import { Task } from '../../../mol-task/index.js'; interface CsvOptions { quote: string; comment: string; delimiter: string; noColumnNames: boolean; } export declare function parseCsv(data: string, opts?: Partial): Task>; export {};