import type { UsageStats } from '../../lib/api-client/usage'; import type { UsageDay } from './useUsageDashboardData'; export interface UsageInsightsProps { stats: UsageStats; series: UsageDay[]; activeDays: number; rangeLabel: string; } /** * Derived context the raw aggregates do not spell out. Every figure is scoped * to the selected range, because the server aggregates the window rather than * lifetime activity. */ export declare function UsageInsights({ stats, series, activeDays, rangeLabel, }: UsageInsightsProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=UsageInsights.d.ts.map