import type { BuildCatalog, ClassEntanglement } from './types.js'; /** * Resolve the cross-discipline title for an archetype + discipline combo. * Returns undefined if no title is defined for this combination. */ export declare function resolveTitle(archetypeId: string, disciplineId: string, catalog: BuildCatalog): string | undefined; /** * Find all entanglements (friction effects) for an archetype + discipline combo. * Returns empty array if no entanglements exist. */ export declare function resolveEntanglements(archetypeId: string, disciplineId: string, catalog: BuildCatalog): ClassEntanglement[]; //# sourceMappingURL=titles.d.ts.map