/** * Copyright (c) 2019-2022 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author David Sehnal * @author Alexander Rose */ import { PdbFile } from '../../mol-io/reader/pdb/schema.js'; import { Task } from '../../mol-task/index.js'; import { Trajectory } from '../../mol-model/structure.js'; import { ModelFormat } from '../format.js'; export { PdbFormat }; type PdbFormat = ModelFormat; declare namespace PdbFormat { function is(x?: ModelFormat): x is PdbFormat; function create(pdb: PdbFile): PdbFormat; } export declare function trajectoryFromPDB(pdb: PdbFile): Task;