import type { IAnimatable } from "../../IAnimatable";
import type { IAnimation } from "../../IAnimation";
import type { IColor } from "../../../../Core";
import type { IValueWithRandom } from "../../IValueWithRandom";
import type { RangeValue } from "../../../../Types";
export interface IOrbit extends IAnimatable<IAnimation> {
    color?: string | IColor;
    enable: boolean;
    radius?: RangeValue;
    rotation: IValueWithRandom;
    opacity: RangeValue;
    width: RangeValue;
}
