import React from 'react'; import type { RunRecord } from '../types'; export declare function RunDetailsCompact({ run, nowMs, width, maxRows, }: { run: RunRecord; nowMs: number; width: number; maxRows: number; }): React.ReactElement;