import type { WorldSnapshot } from './snapshotTypes'; import type { AnalysisResult } from './analyze'; import type { ZoneReport } from './zones'; export type ReportSection = 'anomalies' | 'roster' | 'colliders' | 'zones'; export declare const DEFAULT_REPORT: ReportSection[]; export declare function formatWorldInspection(snapshot: WorldSnapshot, analysis: AnalysisResult, report?: ReportSection[], zones?: ZoneReport[] | null, baselineLine?: string | null): string;