import fs from 'node:fs'; import path from 'node:path'; export declare const ROUTECODEX_BUNDLED_DEFAULT_CONFIG_FILE: "config.v1.quickstart.sanitized.json"; export type BundledDefaultConfigInstallResult = { ok: true; sourcePath: string; targetPath: string; } | { ok: false; reason: 'missing_source' | 'install_failed'; message: string; }; export declare function installBundledDefaultConfigBestEffort(opts: { targetConfigPath: string; fsImpl?: Pick; pathImpl?: Pick; sourceConfigPath?: string; }): BundledDefaultConfigInstallResult;