import { Rarity } from '../../dapps/rarity'; import { Wearable } from '../../platform/item/wearable/wearable'; import { JSONSchema, ValidateFunction } from '../../validation'; /** * @alpha */ export type WearableJson = Pick & { rarity: Rarity; }; /** * @alpha */ export declare namespace WearableJson { const schema: JSONSchema; const validate: ValidateFunction; } //# sourceMappingURL=wearable-json.d.ts.map