import type { SceneControl } from '@anov/3d-core'; import type { ModelOption as LinkOption } from '../types'; import LinkMesh from '.'; declare class CylinderMesh extends LinkMesh { private _color; private _material; get color(): string; set color(newValue: string); constructor(option: LinkOption, sceneControl: SceneControl); dispose(): void; private init; private getCylinder; } export default CylinderMesh;