/** * @file Structure Parser * @author Alexander Rose * @private */ import Parser, { ParserParameters } from './parser'; import Structure from '../structure/structure'; import StructureBuilder from '../structure/structure-builder'; import Streamer from '../streamer/streamer'; export interface StructureParserParameters extends ParserParameters { firstModelOnly: boolean; asTrajectory: boolean; cAlphaOnly: boolean; } declare class StructureParser extends Parser { structure: Structure; structureBuilder: StructureBuilder; constructor(streamer: Streamer, params?: Partial); get type(): string; get __objName(): string; } export default StructureParser;