/** * Copyright (c) 2021 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose */ import { ParamDefinition as PD } from '../../mol-util/param-definition.js'; import { CustomModelProperty } from '../common/custom-model-property.js'; import { HelixOrientation } from './helix-orientation/helix-orientation.js'; export declare const HelixOrientationParams: {}; export type HelixOrientationParams = typeof HelixOrientationParams; export type HelixOrientationProps = PD.Values; export type HelixOrientationValue = HelixOrientation; export declare const HelixOrientationProvider: CustomModelProperty.Provider;