import { WearableCategory } from '../item/wearable/wearable-category'; import { Color3, WearableId } from '../../misc'; import { JSONSchema, ValidateFunction } from '../../validation'; /** * @alpha */ export type Outfit = { bodyShape: WearableId; eyes: { color: Color3; }; hair: { color: Color3; }; skin: { color: Color3; }; wearables: WearableId[]; forceRender?: WearableCategory[]; }; /** * Outfit * @alpha */ export declare namespace Outfit { const schema: JSONSchema; const validate: ValidateFunction; } /** * @alpha */ export type Outfits = { outfits: { slot: number; outfit: Outfit; }[]; namesForExtraSlots: string[]; }; /** * Outfits * @alpha */ export declare namespace Outfits { const schema: JSONSchema; const validate: ValidateFunction; } //# sourceMappingURL=outfits.d.ts.map