import type { TaskGraphPlan, UsageReport, WorkflowStatus } from "./types.js"; export interface DashboardChartSlice { label: string; value: number; } export interface DashboardChartData { taskStatus: DashboardChartSlice[]; graphState: DashboardChartSlice[]; costByProvider: DashboardChartSlice[]; } export declare function buildDashboardChartData(input: { status: WorkflowStatus; graph: TaskGraphPlan; usage?: UsageReport; }): DashboardChartData;