/**
 * @description The gender of the customer, possible values are:
 *      * MALE
 *      * FEMALE
 *      * UNKNOWN
 */
export declare enum Gender {
    MALE = "MALE",
    FEMALE = "FEMALE",
    UNKNOWN = "UNKNOWN"
}
