/**
 * Build an enum object
 * @param {Object} field - entity field
 * @param {String} [clientRootFolder] - the client's root folder
 * @return {Object} the enum info.
 */
export declare const getEnumInfo: (field: any, clientRootFolder?: any) => {
    enumValues: any;
    clientRootFolder: string;
    withoutCustomValues: boolean;
    withSomeCustomValues: boolean;
    withCustomValues: boolean;
    enumName: any;
    enumJavadoc: any;
    enumInstance: any;
    enums: any;
};
