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