import { CliOutputMode } from "../shared/outfitter-fhahf9f3.js"; import { defineAction } from "@outfitter/contracts"; interface DoctorActionInput { readonly cwd: string; readonly outputMode: CliOutputMode; } type DoctorAction = ReturnType>; /** Validate the local environment, toolchain, and project dependencies. */ declare const doctorAction: DoctorAction; export { doctorAction };