import { Currency } from '@zeniai/client-epic-state'; interface AIMetricTileProps { currency: Currency; type: "cost" | "time"; value: string; noData?: boolean; style?: React.CSSProperties; timeUnit?: string; } export default function AIMetricTile({ type, value, currency, timeUnit, style, noData, }: AIMetricTileProps): import("react/jsx-runtime").JSX.Element; export {};