export declare const bodyTypes: readonly ["normal", "fat", "slim", "weak", "skinny", "skinny_fat", "chubby", "malnourished", "obese", "athletic", "strong", "massive"]; export declare type BodyType = typeof bodyTypes[number]; export declare const isBodyType: (someValue: any) => someValue is "normal" | "fat" | "slim" | "weak" | "skinny" | "skinny_fat" | "chubby" | "malnourished" | "obese" | "athletic" | "strong" | "massive"; export declare const asBodyType: (someValue: string) => "normal" | "fat" | "slim" | "weak" | "skinny" | "skinny_fat" | "chubby" | "malnourished" | "obese" | "athletic" | "strong" | "massive";