/** * Do not change this file manually! This file was generated with the "Dicebear Exporter"-Plugin for Figma. * * Plugin: https://www.figma.com/community/plugin/1005765655729342787 */ export interface Options { rearHair?: ('longStraight' | 'longWavy' | 'shoulderHigh' | 'neckHigh')[]; rearHairProbability?: number; body?: ('body')[]; head?: ('head')[]; clothes?: ('turtleNeck' | 'openJacket' | 'dress' | 'shirt' | 'tShirt')[]; mouth?: ('laugh' | 'angry' | 'agape' | 'smile' | 'sad')[]; beard?: ('moustacheTwirl' | 'fullBeard' | 'chin' | 'chinMoustache' | 'longBeard')[]; beardProbability?: number; eyes?: ('happy' | 'wide' | 'bow' | 'humble' | 'wink')[]; eyebrows?: ('raised' | 'angry' | 'happy' | 'sad' | 'neutral')[]; hair?: ('sideComed' | 'undercut' | 'spiky' | 'bun')[]; hairProbability?: number; skinColor?: string[]; hairColor?: string[]; clothesColor?: string[]; } export type ColorPickCollection = Record; export type ComponentGroup = Record; export type ComponentGroupCollection = Record; export type ComponentGroupItem = (components: ComponentPickCollection, colors: ColorPickCollection) => string; export type ComponentPickCollection = Record; export type ComponentPick = { name: string; value: ComponentGroupItem; } | undefined;