/** * Copyright (c) 2019-2024 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose * @author Fred Ludlow * @author Paul Pillot * * based in part on NGL (https://github.com/arose/ngl) */ import { ParamDefinition as PD } from '../../../mol-util/param-definition.js'; import { Features } from './features.js'; import { ContactProvider } from './contacts.js'; declare const HalogenBondsParams: { distanceMax: PD.Numeric; angleMax: PD.Numeric; }; type HalogenBondsParams = typeof HalogenBondsParams; export declare const HalogenDonorProvider: Features.Provider; export declare const HalogenAcceptorProvider: Features.Provider; export declare const HalogenBondsProvider: ContactProvider; export {};