/** * Copyright (c) 2021 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose */ import { Model } from '../../../mol-model/structure/model.js'; export interface HelixOrientation { centers: ArrayLike; } /** Usees same definition as GROMACS' helixorient */ export declare function calcHelixOrientation(model: Model): HelixOrientation;