import type { ActivationPlan } from './plan.js'; import type { PingResult } from './ping.js'; export interface ActivationResult { plan: ActivationPlan; /** True iff config was written (false for --print or a no-op). */ wrote: boolean; /** Provider chosen but its credentials are absent. */ keyMissing: boolean; /** Present iff a live ping ran. */ ping?: PingResult; /** True iff this run is inside a live Claude Code session (`CLAUDECODE=1`). */ claudeCodeSession?: boolean; } export declare function renderText(r: ActivationResult): string; export declare function renderJson(r: ActivationResult): Record; //# sourceMappingURL=render.d.ts.map