/** * Copyright (c) 2019 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 { ValenceModel } from './chemistry/valence-model.js'; import { CustomStructureProperty } from '../common/custom-structure-property.js'; export declare const ValenceModelParams: { assignCharge: PD.Select; assignH: PD.Select; }; export type ValenceModelParams = typeof ValenceModelParams; export type ValenceModelProps = PD.Values; export type ValenceModelValue = Map; export declare const ValenceModelProvider: CustomStructureProperty.Provider;