/** * Dashboard formatting utilities */ /** * Format duration with hours, minutes, seconds */ export declare function formatDurationMs(ms: number): string; /** * Format age (relative time) */ export declare function formatAge(timestamp: string): string; /** * Get context usage color based on percentage */ export declare function getContextColor(percent: number): 'green' | 'red' | 'yellow'; /** * Get status color for session status */ export declare function getStatusColor(status: string): 'gray' | 'green' | 'red' | 'yellow'; /** * Get worktree status icon */ export declare function getWorktreeStatusIcon(status?: string): string; /** * Get exploration status color */ export declare function getExplorationStatusColor(status: string): 'green' | 'red' | 'yellow'; //# sourceMappingURL=format-helpers.d.ts.map