import JDLObject from '../core/models/jdl-object.js'; import type { JDLRuntime } from '../core/types/runtime.js'; import type { JHipsterYoRcContent, JHipsterYoRcContentWrapper } from '../core/types/json-config.js'; export type JHipsterYoRcContentAndJDLWrapper = { applications?: JHipsterYoRcContent[]; jdl?: JDLObject; }; export declare function convertApplicationsToJDL({ applications, jdl }: JHipsterYoRcContentAndJDLWrapper, runtime: JDLRuntime): JDLObject; export declare function convertApplicationToJDL({ application }: JHipsterYoRcContentWrapper | undefined, runtime: JDLRuntime): import("../core/models/jdl-application.js").default;