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