import type { SceneControl } from '@anov/3d-core'; import type { ParticleOption } from '../types'; import ParticleMesh from '.'; declare class SingleCircleMesh extends ParticleMesh { private _material; private _radius; private _color; get radius(): number; get color(): string; set color(newValue: string); constructor(option: ParticleOption, sceneControl: SceneControl); private init; } export default SingleCircleMesh;