export interface WorldMetricsTable { capsule: Record; traversal: Record; movement: Record; derived: Record; } /** Null when the installed system predates WORLD_METRICS (< 0.2.13) — callers degrade with a message. */ export declare function readWorldMetrics(worldDir: string): Promise; export declare function renderWorldMetrics(metrics: WorldMetricsTable): string; export declare const METRICS_UNSUPPORTED_MESSAGE: string;