/**
 * @extends {AttachmentSocket}
 */
export class BoneAttachmentSocket extends AttachmentSocket {
    /**
     *
     * @param j
     * @returns {BoneAttachmentSocket}
     */
    static fromJSON(j: any): BoneAttachmentSocket;
    boneName: string;
    /**
     *
     * @param {BoneAttachmentSocket} other
     */
    copy(other: BoneAttachmentSocket): void;
    /**
     *
     * @return {BoneAttachmentSocket}
     */
    clone(): BoneAttachmentSocket;
    /**
     * @readonly
     * @type {boolean}
     */
    readonly isBoneAttachmentSocket: boolean;
}
import { AttachmentSocket } from "./AttachmentSocket.js";
//# sourceMappingURL=BoneAttachmentSocket.d.ts.map