export declare class Slot { name: string; itemPbURL: string; itemId?: number; nodeId?: number; active: boolean; private constructor(); static NewEquipmentSlot(name: string, itemId: number): Slot; static NewJewelSlot(name: string, nodeId: number): Slot; toString(): string; } export declare class SocketIdURL { nodeId: number; name: string; itemPbURL: string; toString(): string; } export declare class ItemSet { useSecondWeaponSet: boolean; id: number; slots: (Slot | SocketIdURL)[]; append(item: Slot | SocketIdURL): void; toString(): string; } //# sourceMappingURL=Slot.d.ts.map