/** * Copyright (c) 2024 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Dušan Veľký */ import { Mesh } from '../../../mol-geo/geometry/mesh/mesh.js'; import { WebGLContext } from '../../../mol-gl/webgl/context.js'; import { Shape } from '../../../mol-model/shape.js'; import { Color } from '../../../mol-util/color/index.js'; import { Tunnel } from './data-model.js'; export declare function createSpheresShape(options: { tunnel: Tunnel; color: Color; resolution: number; sampleRate: number; showRadii: boolean; prev?: Shape; }): Promise>; export declare function createTunnelShape(options: { tunnel: Tunnel; color: Color; resolution: number; sampleRate: number; webgl: WebGLContext | undefined; prev?: Shape; }): Promise>;