import type { ShapeGeneratorOptions, ShapeParticle, IShape } from './type'; export declare class Donut implements IShape { radius: number; donutRadius: number; arc: number; arcMode: number; constructor(props: any); generate(opt: ShapeGeneratorOptions): ShapeParticle; }