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