import { type CliLang } from './i18n.js'; import type { EvaluationReport, ReportDocument } from '../../types/index.js'; export interface EvalResult { report: ReportDocument; filePath: string | null; } export interface ReportServer { start: () => Promise; } export declare function requireEvaluationReport(report: ReportDocument | null, id: string, lang: CliLang): EvaluationReport; export declare function parseLastWindow(spec: string): string | null;