import type { TuiPluginModule } from "@opencode-ai/plugin/tui" import type { buildStatsReport } from "../commands/stats" export type TuiApi = Parameters>[0] export type Theme = TuiApi["theme"]["current"] export type ThemeColor = Exclude export type StatsReport = Awaited> export type DcpCommand = { title: string name: string description: string slashName: string slashAliases?: string[] run: () => void | Promise }