import { FileShape } from './schema.js'; import { DesiredAssignment } from './model.js'; import { Finding } from './finding.js'; /** * Turn a validated file into canonical (assignee, kind, target) tuples, and * emit the structural findings: duplicate targets, empty lists, empty users. */ export declare function normalize(data: FileShape, file: string): { assignments: DesiredAssignment[]; findings: Finding[]; }; //# sourceMappingURL=normalize.d.ts.map