import type { ApplicationConfiguration, YoRcContent } from '../types/application/yo-rc.js'; import type { Entity } from '../types/base/entity.js'; export declare const YO_RC_CONFIG_KEY = "generator-begcode"; export declare const YO_RC_FILE = ".yo-rc.json"; export declare const mergeYoRcContent: (oldConfig: YoRcContent, newConfig: YoRcContent) => YoRcContent; export declare const readEntityFile: (applicationPath: string, entity: string) => Content; export declare const readYoRcFile: (yoRcPath?: string) => YoRcContent; export declare const readCurrentPathYoRcFile: () => YoRcContent | undefined;