/** * Copyright (c) 2019-2026 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author David Sehnal * @author Alexander Rose */ import { PdbFile } from './schema.js'; import { Task } from '../../../mol-task/index.js'; import { ReaderResult } from '../result.js'; import { StringLike } from '../../common/string-like.js'; export declare function parsePDB(data: StringLike, id?: string, variant?: 'pdb' | 'pdbqt' | 'pqr'): Task>;