/** * Helpers for project status panel: timestamps and Jira connection health labels. */ export type JiraHealthStatus = "ok" | "warning" | "error"; export interface JiraHealthLabelResult { status: JiraHealthStatus; label: string; detail?: string; } /** * Map Jira credential status (from batch/context) to panel health. */ export declare function getJiraHealthLabel(credentialStatus: "missing" | "active" | "needs_reconnect" | null | undefined): JiraHealthLabelResult; /** * Format a date for "last sync" / "last deployment" display (compact, relative when recent). */ export declare function formatStatusTimestamp(date: Date | string | null | undefined): string; //# sourceMappingURL=project-status-utils.d.ts.map