import type { IAnimatable, IAnimation, IOptionsColor, IValueWithRandom, RangeValue } from "@tsparticles/engine"; export interface IOrbit extends IAnimatable { color?: string | IOptionsColor; enable: boolean; opacity: RangeValue; radius?: RangeValue; rotation: IValueWithRandom; width: RangeValue; }