/**
 * Apideck
 * The Apideck OpenAPI Spec: SDK Optimized
 *
 * The version of the OpenAPI document: 10.13.0
 * Contact: support@apideck.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 * The gender represents the gender identity of a person.
 * @export
 * @enum {string}
 */
export declare enum Gender {
    male = "male",
    female = "female",
    unisex = "unisex",
    other = "other",
    not_specified = "not_specified"
}
export declare function GenderFromJSON(json: any): Gender;
export declare function GenderFromJSONTyped(json: any, ignoreDiscriminator: boolean): Gender;
export declare function GenderToJSON(value?: Gender | null): any;
