import type { DashboardState, DashboardStats, OutputItem } from "./types.js"; export type DashboardStore = { getState(): DashboardState; appendOutput(item: OutputItem): void; updateStats(partial: Partial): void; onChange(handler: () => void): () => void; }; export declare function createStore(): DashboardStore;