export class AttachmentSocket {
    /**
     *
     * @param j
     * @returns {AttachmentSocket}
     */
    static fromJSON(j: any): AttachmentSocket;
    /**
     *
     * @type {String}
     */
    id: string;
    /**
     * Transform of the socket relative to the entity
     * @readonly
     * @type {Transform}
     */
    readonly transform: Transform;
    fromJSON(j: any): void;
    /**
     *
     * @param {AttachmentSocket} other
     */
    copy(other: AttachmentSocket): void;
    /**
     *
     * @return {AttachmentSocket}
     */
    clone(): AttachmentSocket;
}
import { Transform } from "../transform/Transform.js";
//# sourceMappingURL=AttachmentSocket.d.ts.map