/** * Copyright (c) 2024 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Dušan Veľký */ import { ParamDefinition as PD } from '../../../mol-util/param-definition.js'; import { StructureRepresentationPresetProvider } from '../../../mol-plugin-state/builder/structure/representation-preset.js'; import { Structure } from '../../../mol-model/structure.js'; export declare const SbNcbrTunnels: import("../../../mol-state/index.js").StateTransformer; export declare function isApplicable(structure?: Structure): boolean; export declare const TunnelsPreset: StructureRepresentationPresetProvider<{ serverType: "pdb"; serverUrl: string; ignoreHydrogens: boolean | undefined; ignoreHydrogensVariant: "all" | "non-polar" | undefined; ignoreLight: boolean | undefined; quality: "auto" | "medium" | "high" | "low" | "custom" | "highest" | "higher" | "lower" | "lowest" | undefined; theme: PD.Normalize<{ globalName: /*elided*/ any; globalColorParams: /*elided*/ any; carbonColor: /*elided*/ any; symmetryColor: /*elided*/ any; symmetryColorParams: /*elided*/ any; focus: /*elided*/ any; }> | undefined; }, { components?: undefined; representations?: undefined; } | { components: { polymer: import("../../../mol-state/index.js").StateObjectSelector>, import("../../../mol-state/index.js").StateObject>, any>> | undefined; } | { all: import("../../../mol-state/index.js").StateObjectSelector>, import("../../../mol-state/index.js").StateObject>, any>> | undefined; branched: undefined; } | undefined; representations: {}; }>;