/** * @file Tube Representation * @author Alexander Rose * @private */ import CartoonRepresentation, { CartoonRepresentationParameters } from './cartoon-representation'; import { Structure } from '../ngl'; import Viewer from '../viewer/viewer'; /** * Tube Representation */ declare class TubeRepresentation extends CartoonRepresentation { constructor(structure: Structure, viewer: Viewer, params: Partial); init(params: Partial): void; getSplineParams(): { subdiv: number; tension: number; directional: boolean; smoothSheet: boolean; } & Partial; } export default TubeRepresentation;