export declare function telemetryEnabled(): boolean; export declare function getSessionId(): string | undefined; /** * Best-effort host-IDE detection. Returns a short lowercase token: * "cursor" | "claude-code" | "cline" | "vscode" | "windsurf" | "chatgpt" | * "zed" | "unknown". * * Detection order matters — env vars are stronger signals than parent * process name (which can be misleading on macOS where IDEs spawn * launchers). Falls back to "unknown" rather than guessing. */ export declare function detectIde(): string;