/** * Formats seconds into MM:SS display string. */ declare function formatDuration(totalSeconds: number): string; /** * Formats milliseconds into MM:SS.ms display string. * Useful for timers and stopwatches. */ declare function formatTime(totalMs: number): string; export { formatDuration, formatTime };