import type ClayNode from './Node'; /** * @constructor clay.Joint * @extends clay.core.Base */ export declare class Joint { /** * Joint name */ name: string; /** * Index of joint in the skeleton */ index: number; /** * Scene node attached to */ node?: ClayNode; constructor(name?: string, index?: number, node?: ClayNode); } export default Joint;