/** * Copyright (c) 2024 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Adam Midlik */ import { PluginStateObject as SO } from '../../../mol-plugin-state/objects.js'; import { ParamDefinition as PD } from '../../../mol-util/param-definition.js'; export declare const StructureSurroundingsParams: { radius: PD.Numeric; includeSelf: PD.BooleanParam; wholeResidues: PD.BooleanParam; nullIfEmpty: PD.Base; }; export type StructureSurroundingsParams = typeof StructureSurroundingsParams; export type StructureSurroundingsProps = PD.ValuesFor; export type StructureSurroundings = typeof StructureSurroundings; export declare const StructureSurroundings: import("../../../mol-state/index.js").StateTransformer>;