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