/** * Builds an object from an array of enum values. * The keys of the object are the humanized versions of the enum values, * and the values are the original enum values. * * @param {any[] | undefined} enumArray - An array of enum values. * @returns {Record | null} An object mapping humanized enum names to their original values, or null if the input is empty. */ export declare function buildEnumObject(enumArray: any[] | undefined): Record | null; //# sourceMappingURL=buildEnumObject.d.ts.map