import React from 'react'; import { colors } from '../theme'; import { FacialHairProps } from './facialHair/types'; import { HairProps } from './hair/types'; import { ClothingProps } from './clothing/types'; import { MouthProps } from './mouths/types'; import { BodyProps } from './bodies/types'; import { HatProps } from './hats/types'; import { EyeProps } from './eyes/types'; interface BaseProps { eyes: React.ComponentType; eyebrows: React.ComponentType; mouth: React.ComponentType; hair?: { Front: React.ComponentType; Back: React.ComponentType; hatScale?: number; }; facialHair: React.ComponentType; accessory: React.ComponentType; graphic: React.ComponentType; hat: { Front: React.ComponentType; Back: React.ComponentType; }; body: { Front: React.ComponentType; Back: React.ComponentType; }; clothing: { Front: React.ComponentType; Back: React.ComponentType; braStraps?: boolean; }; clothingColor: keyof typeof colors.clothing; hairColor: keyof typeof colors.hair; circleColor: keyof typeof colors.bgColors; lipColor: keyof typeof colors.lipColors; hatColor: keyof typeof colors.clothing; faceMaskColor: keyof typeof colors.clothing; mask: boolean; faceMask: boolean; lashes: boolean; } export declare const Base: React.ForwardRefExoticComponent>; export {};