/** * Copyright (c) 2021 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author David Sehnal */ import { Column } from '../../../mol-data/db.js'; import { Task } from '../../../mol-task/index.js'; import { StringLike } from '../../common/string-like.js'; import { ReaderResult as Result } from '../result.js'; export interface XyzFile { readonly molecules: { readonly comment: string; readonly count: number; readonly x: Column; readonly y: Column; readonly z: Column; readonly type_symbol: Column; }[]; } export declare function parseXyz(data: StringLike): Task>;