#!/usr/bin/env node import type { Router } from '@cortex/llm'; import type { SQLiteStore } from '@cortex/graph'; /** Wire token tracking persistence: each LLM call is saved to SQLite. * Also hydrates the tracker with this month's existing spend so budget * enforcement works correctly across separate CLI processes. */ export declare function wireTokenPersistence(router: Router, store: SQLiteStore): void; export declare function getVersion(): string; export interface GlobalOptions { config?: string; verbose: boolean; quiet: boolean; json: boolean; color: boolean; } //# sourceMappingURL=index.d.ts.map