export declare class EnumWithCustomOfAssociatedPersonCategory {
    /**
     * Attribute type map
     */
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
    /**
     * Associated person's category. Enum, available values: Spouse, Child, Mother, Father, Parent, Brother, Sister, Friend, Relative, Manager, Assistant, ReferredBy, Partner, DomesticPartner, Custom
     */
    value: string;
    description: string;
    /**
     *
     * @param value Associated person's category. Enum, available values: Spouse, Child, Mother, Father, Parent, Brother, Sister, Friend, Relative, Manager, Assistant, ReferredBy, Partner, DomesticPartner, Custom
     * @param description
     */
    constructor(value?: string, description?: string);
}
/**
 *  EnumWithCustomOfAssociatedPersonCategory model builder
 */
export declare class EnumWithCustomOfAssociatedPersonCategoryBuilder {
    private readonly model;
    constructor(model: EnumWithCustomOfAssociatedPersonCategory);
    /**
     * Build model.
     */
    build(): EnumWithCustomOfAssociatedPersonCategory;
    /**
    * Associated person's category. Enum, available values: Spouse, Child, Mother, Father, Parent, Brother, Sister, Friend, Relative, Manager, Assistant, ReferredBy, Partner, DomesticPartner, Custom
    */
    value(value: string): EnumWithCustomOfAssociatedPersonCategoryBuilder;
    description(description: string): EnumWithCustomOfAssociatedPersonCategoryBuilder;
}
