/** * Option Values - Available values for each avatar customization option * * This module extracts and exports all available option values from the component modules. * These values are extracted from the optionValue properties attached to each component. */ /** * Available top type values */ export declare const TOP_TYPES: readonly string[]; /** * Available accessories type values */ export declare const ACCESSORIES_TYPES: readonly string[]; /** * Available hair color values */ export declare const HAIR_COLORS: readonly string[]; /** * Available hat color values */ export declare const HAT_COLORS: readonly string[]; /** * Available facial hair type values */ export declare const FACIAL_HAIR_TYPES: readonly string[]; /** * Available facial hair color values */ export declare const FACIAL_HAIR_COLORS: readonly string[]; /** * Available clothe type values */ export declare const CLOTHE_TYPES: readonly string[]; /** * Available clothe color values */ export declare const CLOTHE_COLORS: readonly string[]; /** * Available graphic type values */ export declare const GRAPHIC_TYPES: readonly string[]; /** * Available eye type values */ export declare const EYE_TYPES: readonly string[]; /** * Available eyebrow type values */ export declare const EYEBROW_TYPES: readonly string[]; /** * Available mouth type values */ export declare const MOUTH_TYPES: readonly string[]; /** * Available skin color values */ export declare const SKIN_COLORS: readonly string[]; /** * Type helpers for option values */ export type TopType = (typeof TOP_TYPES)[number]; export type AccessoriesType = (typeof ACCESSORIES_TYPES)[number]; export type HairColor = (typeof HAIR_COLORS)[number]; export type HatColor = (typeof HAT_COLORS)[number]; export type FacialHairType = (typeof FACIAL_HAIR_TYPES)[number]; export type FacialHairColor = (typeof FACIAL_HAIR_COLORS)[number]; export type ClotheType = (typeof CLOTHE_TYPES)[number]; export type ClotheColor = (typeof CLOTHE_COLORS)[number]; export type GraphicType = (typeof GRAPHIC_TYPES)[number]; export type EyeType = (typeof EYE_TYPES)[number]; export type EyebrowType = (typeof EYEBROW_TYPES)[number]; export type MouthType = (typeof MOUTH_TYPES)[number]; export type SkinColor = (typeof SKIN_COLORS)[number];