import { ActionBehavior, ContextManager, ActionBehaviorConstructorProps, Component, Observable } from '@zcomponent/core'; /** * Sets the angular velocity of a physics body. * @zicon sync_alt * @zbehavior * @zgroup Physics Actions */ export declare class SetAngularVelocity extends ActionBehavior { protected zcomponent: import("@zcomponent/core").ZComponent; /** * The rigidbody target. * @zprop * @zvalues behaviorids three/Object3D/Physics/RigidBody */ rigidbody: string; /** * The angular velocity vector to set. * @zprop * @zgroup Physics * @zgrouppriority 20 * @zdefault [0, 0, 0] */ angularVelocity: Observable; constructor(contextManager: ContextManager, instance: Component, props: ActionBehaviorConstructorProps); /** @zprop */ perform: () => void; /** @zui */ preview(): void; }