import { InventoryData, ModuleMapData, DependencyData, RegistryData } from '../types'; /** * Generates registry.json — the codebase registry organized by module. * Combines inventory (files + exports + signatures), module detection, * and dependency data into a single JSON that the AI reads to know * what exists and how to use it without opening source files. */ export declare function generateRegistry(inventory: InventoryData, modules: ModuleMapData, deps: DependencyData): RegistryData;