import { type CodexInstallationDetection } from "../../install-codex"; import type { CheckResult, CodexDoctorSummary } from "../types"; type DetectCodexInstallation = () => Promise; export interface CodexDoctorDeps { readonly codexHome?: string; readonly binDir?: string; readonly detectCodexInstallation?: DetectCodexInstallation; } export declare function gatherCodexSummary(deps?: CodexDoctorDeps): Promise; export declare function checkCodex(deps?: CodexDoctorDeps): Promise; export {};