import { Command } from 'commander'; export type TodoStatus = 'pending' | 'in_progress' | 'done'; export interface TodoTask { id: string; title: string; status: TodoStatus; deps?: string[]; } export interface TodoPhase { id: string; title: string; summary: string; tasks: TodoTask[]; } export declare const ROADMAP_VERSION = "2026-05-23-b"; export declare const ROADMAP_GOAL = "Unified AI spend across 4+ machines: auto-sync local telemetry, track subscription usage & savings, ingest all major coding agents, and expose proactive CLI/MCP intelligence \u2014 not just per-machine API cost estimates."; export declare const ROADMAP_PHASES: TodoPhase[]; export declare function printTodosHelp(): void; export declare function printTodosOverview(): void; export declare function printTodosList(opts: { phase?: string; status?: TodoStatus; limit?: number; verbose?: boolean; json?: boolean; }): void; export declare function printTodoShow(taskId: string): void; export declare function registerTodosCommand(program: Command): void; //# sourceMappingURL=todos.d.ts.map