interface CacheHealthOptions { /** Absolute path to a specific JSONL file to parse (bypasses active-session lookup). */ sessionPath?: string; /** When true, output JSON instead of human-readable text. */ json: boolean; } /** * Handle `claude switch cache-health [--session ] [--json]`. * * @throws {ExitError} with code 1 when no session is available and `--session` is not provided. */ export declare function handleCacheHealth(opts: CacheHealthOptions): void; export {};