/** * no-init-config — deterministic in-memory config synthesis for first runs. * * The synthesized document is never written to disk. It is passed through the * same composed config validation path as `opensip-cli.config.yml`. Host-owned * starter semantics (languages, excludes, targets) come from * {@link ./starter-config.ts}; this module only detects languages and * packages the result. */ import { type SupportedLanguage } from '../commands/init/language-detection.js'; export interface NoInitConfigSynthesis { readonly document: Record; readonly languages: readonly SupportedLanguage[]; } export declare function synthesizeNoInitConfigDocument(cwd: string): NoInitConfigSynthesis | undefined; //# sourceMappingURL=no-init-config.d.ts.map