import type { SubkoiRunRecord } from "../../koi/subkoi-registry.js"; export declare function formatDurationShort(valueMs?: number): string; export declare function formatAgeShort(valueMs?: number): string; export declare function resolveSubkoiLabel(entry: SubkoiRunRecord, fallback?: string): string; export declare function formatRunLabel(entry: SubkoiRunRecord, options?: { maxLength?: number; }): string; export declare function formatRunStatus(entry: SubkoiRunRecord): "timeout" | "error" | "unknown" | "done" | "running"; export declare function sortSubkoiRuns(runs: SubkoiRunRecord[]): SubkoiRunRecord[];