import JDLObject from '../../core/models/jdl-object.ts'; import type { ParsedJDLRoot } from '../../core/types/parsed.ts'; import type { JDLRuntime } from '../../core/types/runtime.ts'; /** * Converts the intermediate parsedContent to a JDLObject from a configuration object. */ export declare function parseFromConfigurationObject(configurationObject: ParsedJDLRoot, runtime: JDLRuntime): JDLObject; declare const _default: { parseFromConfigurationObject: typeof parseFromConfigurationObject; }; export default _default;