import type { Field as BaseApplicationField } from '../types.d.ts'; type EnumValuesData = { withoutCustomValues: boolean; withSomeCustomValues: boolean; withCustomValues: boolean; }; type EnumNameValue = { name: string; value: string; comment?: string; }; /** * 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: Pick, clientRootFolder?: string) => EnumValuesData & { enumName: string; enumInstance: string; enums: string[]; enumValues: EnumNameValue[]; clientRootFolder: string; enumJavadoc?: string; }; export {};