import { ActionBehavior, ContextManager, ActionBehaviorConstructorProps, Component } from '@zcomponent/core'; /** * * @zbehavior * @zicon code * @zgroup Physics Actions */ export declare class SetGrabState extends ActionBehavior { protected zcomponent: import("@zcomponent/core").ZComponent; /** * The rigidbody target. * @zprop * @zvalues nodeids three/Object3D/Physics/RigidbodyGrabber */ grabber: string; /** * @zprop */ state: boolean; constructor(contextManager: ContextManager, instance: Component, props: ActionBehaviorConstructorProps); perform: () => void; preview(): void; dispose: () => never; }