/** * Copyright (c) 2022 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose */ import { Task } from '../../../mol-task/index.js'; import { ReaderResult as Result } from '../result.js'; import { Column, Table } from '../../../mol-data/db.js'; import { StringLike } from '../../common/string-like.js'; declare const AtomsSchema: { nr: Column.Schema.Int; type: Column.Schema.Str; resnr: Column.Schema.Int; residu: Column.Schema.Str; atom: Column.Schema.Str; cgnr: Column.Schema.Int; charge: Column.Schema.Float; mass: Column.Schema.Float; }; declare const BondsSchema: { ai: Column.Schema.Int; aj: Column.Schema.Int; }; declare const MoleculesSchema: { compound: Column.Schema.Str; molCount: Column.Schema.Int; }; type Compound = { atoms: Table; bonds?: Table; }; export interface TopFile { readonly system: string; readonly molecules: Table; readonly compounds: Record; } export declare function parseTop(data: StringLike): Task>; export {};