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