/** * Check command implementation * * Validates Nori installation and configuration */ import type { Command } from "commander"; /** * Register the 'check' command with commander * @param args - Configuration arguments * @param args.program - Commander program instance */ export declare const registerCheckCommand: (args: { program: Command; }) => void; /** * Run validation checks on Nori installation * @param args - Configuration arguments * @param args.installDir - Custom installation directory (optional) * @param args.agent - AI agent to use (auto-detected from config if not provided) */ export declare const checkMain: (args?: { installDir?: string | null; agent?: string | null; }) => Promise; //# sourceMappingURL=check.d.ts.map