interface DocumentedModel { name: string; documentation?: string | null; } /** * Generator 3 deliberately has no model-level escape hatch for generated CRUD authorization. * Fail before writing output so a stale annotation cannot look accepted while being ignored. */ export declare function assertNoCrudAuthAnnotations(models: readonly DocumentedModel[]): void; export {};