/** * Index building for O(1) lookups in the Model Query SDK. * Builds maps for FQN, name, team, strategic classification, and metadata lookups. * * Indexes are built once during model loading and enable fast queries. */ import type { Model } from '../generated/ast.js'; import type { ModelIndexes } from './types.js'; /** * Builds all indexes for a model. * Called once during model loading. * * @param model - Root model node * @returns ModelIndexes containing all lookup maps */ export declare function buildIndexes(model: Model): ModelIndexes;