/** * Detect the host app's "shared" package import scope (e.g. `@dreamer/shared`). * * The generated module imports `ModuleId` from this package. The scope differs * per host app, so it must be resolved from the target repo rather than * hardcoded. Resolution order: * 1. explicit override (CLI `--shared-scope`) * 2. a `@/shared` key in `tsconfig.base.json` / `tsconfig.json` paths * 3. a `@/shared` entry in the root `package.json` dependencies * 4. the provided fallback */ export declare function detectSharedScope(params?: { cwd?: string; override?: string; fallback?: string; }): string; //# sourceMappingURL=scope-detector.d.ts.map