import type { Merge } from 'type-fest'; import type { YoRcConfigValue, YoRcFileContent } from '../constants/yeoman.ts'; import type { Entity } from '../jhipster/types/entity.ts'; import type { YoRcJHipsterContent } from '../jhipster/types/yo-rc.ts'; export declare const YO_RC_CONFIG_KEY = "generator-jhipster"; export declare const mergeYoRcContent: , const NewConfig extends YoRcFileContent>(oldConfig: OldConfig, newConfig: NewConfig) => Merge; export declare const readEntityFile: (applicationPath: string, entity: string) => Content; export declare const readYoRcFile: (yoRcPath?: string) => YoRcJHipsterContent; export declare const readCurrentPathYoRcFile: () => YoRcJHipsterContent | undefined;