import { ContextManager } from '@zcomponent/core'; import { Group } from './Group'; /** * Properties for the AttachmentPoint component. */ interface AttachmentPointProps { /** @zprop * @zvalues parentnodes */ attachTo: string; } /** * Attaches the contents of this group to the specified node. * * Root element: [THREE.Group](https://threejs.org/docs/index.html#api/en/objects/Group) * @zcomponent * @ztag three/Object3D/Group/AttachmentPoint * @zparents three/Object3D/AttachmentSource/** * @zicon transform */ export declare class AttachmentPoint extends Group { attachTo: string; constructor(mgr: ContextManager, props: AttachmentPointProps); dispose(): never; } export {};