/** * Copyright (c) 2019-2020 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose */ import { Task } from '../../mol-task/index.js'; import { ModelFormat } from '../format.js'; import { GroFile } from '../../mol-io/reader/gro/schema'; import { Trajectory } from '../../mol-model/structure.js'; export { GroFormat }; type GroFormat = ModelFormat; declare namespace GroFormat { function is(x?: ModelFormat): x is GroFormat; function fromGro(gro: GroFile): GroFormat; } export declare function trajectoryFromGRO(gro: GroFile): Task;