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