/** biome-ignore-all lint/suspicious/noConsole: Console output is intentional in CLI */ import type { Command } from 'commander'; export interface DiagnoseResult { ok: boolean; version: string; mode: 'hosted' | 'local'; userId: string | null; userEmail: string | null; sessionStore: string; sessionName: string; envSession: string | null; logCmsSession: string | null; spaceKey: string | null; activeSession: { sessionKey: string; rootEntryId: string; rootSlug: string | null; rootType: string; spaceKey: string; fetchedAt: string; entryCount: number; treeNodeCount: number; modifiedEntryIds: number; } | null; loadError: string | null; } export declare function buildDiagnoseResult(sessionNameArg?: string): Promise; export declare function registerDiagnoseCommand(program: Command): void; //# sourceMappingURL=diagnose.d.ts.map