type Page = { relPath: string; contents: string; }; /** All diagnostics pages as in-memory {relPath, contents}. The build script * writes them; tests assert on them without touching the filesystem. */ export declare function generateDiagnosticsPages(): Page[]; export {};