/** * Deterministic fallback assignment using file/directory cohort voting. */ import type { Command } from '@oclif/core'; import type { IndexDatabase } from '../../../db/database.js'; /** * Deterministic fallback: assign remaining unassigned symbols using file/directory cohort majority. * Tier 1: If other symbols in the same file are assigned to a module, assign there. * Tier 2: If other symbols in the same directory are assigned to a module, assign there. * Walks up parent directories if no match at the immediate level. * Test-file guard: test file symbols only assigned to test modules. */ export declare function assignByFileCohortFallback(db: IndexDatabase, command: Command, isJson: boolean, verbose: boolean): number; //# sourceMappingURL=fallback-assignment.d.ts.map