/** * Copyright (c) 2019 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose * @author Fred Ludlow * * 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 HydrophobicParams: { distanceMax: PD.Numeric; }; type HydrophobicParams = typeof HydrophobicParams; export declare const HydrophobicAtomProvider: Features.Provider; export declare const HydrophobicProvider: ContactProvider; export {};