import type { UIRange, UIRangeConfig } from "../miscellaneous/miscellaneous"; import { UISpawnModule } from "./UISpawnModule"; /** * Assigns random angular velocity to particles. * * Torque (rotation speed) is chosen uniformly from the specified range. */ export declare class UISpawnRandomTorque extends UISpawnModule<{ builtin: "Matrix4"; }> { private torqueInternal; /** * @param torque - Angular velocity range in radians/second. Accepts number, tuple, or range object */ constructor(torque?: UIRangeConfig); /** Angular velocity range in radians/second */ get torque(): UIRange; /** Angular velocity range in radians/second */ set torque(value: UIRangeConfig); }