export declare const facialFeatures: readonly ["handsome", "pretty", "rough", "ugly", "worn", "kind", "average"]; export declare type FacialFeatures = typeof facialFeatures[number]; export declare const isFacialFeatures: (someValue: any) => someValue is "handsome" | "pretty" | "rough" | "ugly" | "worn" | "kind" | "average"; export declare const asFacialFeatures: (someValue: string) => "handsome" | "pretty" | "rough" | "ugly" | "worn" | "kind" | "average";