/** The single API version constant; every versioned path prepends it. */ export declare const API_VERSION = "v1"; /** Route path builders. Keys mirror the spec ยง6 route table. */ export declare const routes: { readonly healthz: () => string; readonly status: () => string; readonly daemonRestart: () => string; readonly nodes: () => string; readonly reviveAll: () => string; readonly node: (id: string) => string; readonly nodeSnapshot: (id: string) => string; readonly nodeTranscript: (id: string) => string; readonly nodeContext: (id: string) => string; readonly nodeArtifacts: (id: string) => string; readonly nodeReports: (id: string) => string; readonly nodeMessages: (id: string) => string; readonly nodeInterrupt: (id: string) => string; readonly nodeFork: (id: string) => string; readonly nodeRevive: (id: string) => string; readonly nodeRelaunchRoot: (id: string) => string; readonly nodeClose: (id: string) => string; readonly nodeRecycle: (id: string) => string; readonly nodeDemote: (id: string) => string; readonly nodePromote: (id: string) => string; readonly nodeYield: (id: string) => string; readonly nodeWait: (id: string) => string; readonly nodeConfig: (id: string) => string; readonly nodeWorktreeClose: (id: string) => string; readonly nodeAttach: (id: string) => string; readonly focuses: () => string; readonly focusByNode: () => string; readonly focusByPane: () => string; readonly focus: (focusId: string) => string; readonly nodeSubscriptions: (id: string) => string; readonly nodeSubscription: (id: string, target: string) => string; readonly crons: () => string; readonly cron: (cronId: string) => string; readonly cronPause: (cronId: string) => string; readonly cronResume: (cronId: string) => string; readonly cronRun: (cronId: string) => string; readonly canvasAttention: () => string; readonly canvasAttentionCounts: () => string; readonly canvasHistorySearch: () => string; readonly canvasHistoryGrep: () => string; readonly canvasHistoryRead: () => string; readonly canvasSnapshot: () => string; readonly canvasRoster: () => string; readonly canvasPrune: () => string; readonly canvasRebuildIndex: () => string; readonly canvasConsults: () => string; readonly humanBridge: () => string; readonly humanDeliver: () => string; readonly humanConsult: () => string; readonly humanVisual: () => string; readonly humanInbox: () => string; readonly humanInboxTicket: (ticketId: string) => string; readonly humanInboxRespond: (ticketId: string) => string; readonly humanInboxCancel: (ticketId: string) => string; readonly profiles: () => string; readonly profile: (name: string) => string; readonly modelAuth: (provider: string) => string; readonly filePeek: () => string; };