export declare class EnumWithCustomOfPostalAddressCategory {
    /**
     * Attribute type map
     */
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
    /**
     * Address category. Enum, available values: Home, Work, Custom
     */
    value: string;
    description: string;
    /**
     *
     * @param value Address category. Enum, available values: Home, Work, Custom
     * @param description
     */
    constructor(value?: string, description?: string);
}
/**
 *  EnumWithCustomOfPostalAddressCategory model builder
 */
export declare class EnumWithCustomOfPostalAddressCategoryBuilder {
    private readonly model;
    constructor(model: EnumWithCustomOfPostalAddressCategory);
    /**
     * Build model.
     */
    build(): EnumWithCustomOfPostalAddressCategory;
    /**
    * Address category. Enum, available values: Home, Work, Custom
    */
    value(value: string): EnumWithCustomOfPostalAddressCategoryBuilder;
    description(description: string): EnumWithCustomOfPostalAddressCategoryBuilder;
}
