import { JSONSchema, ValidateFunction } from '../../../validation'; import { BodyShape } from '../body-shape'; import { HideableWearableCategory } from './hideable-category'; /** @alpha */ export type WearableRepresentation = { bodyShapes: BodyShape[]; mainFile: string; contents: string[]; overrideHides: HideableWearableCategory[]; overrideReplaces: HideableWearableCategory[]; }; /** @alpha */ export declare namespace WearableRepresentation { const schema: JSONSchema; const validate: ValidateFunction; } //# sourceMappingURL=representation.d.ts.map