"use client"; import type { StatusTone } from "@/components/dashboard/scan-terminal/CityStatusTags"; export type DataFreshnessRow = { label: string; labelTitle?: string; value: string; tone: string; }; export function DataFreshnessBar({ aiStatusLabel, aiStatusTone, freshnessSeparator, isEn, rows, }: { aiStatusLabel: string; aiStatusTone: StatusTone; freshnessSeparator: string; isEn: boolean; rows: DataFreshnessRow[]; }) { return (