/** * Shared validation for registry commands to check cursor-agent support * * Registry commands download profiles to ~/.nori/profiles/ which requires * Claude Code to be installed. If only cursor-agent is installed, these * commands should fail with a helpful message. */ import type { Config } from "../../cli/config.js"; /** * Check if registry commands are supported for the current installation. * Returns false if only cursor-agent is installed (no claude-code). * * @param args - The check arguments * @param args.installDir - The installation directory to check * * @returns Object with supported boolean and optional config */ export declare const checkRegistryAgentSupport: (args: { installDir: string; }) => Promise<{ supported: boolean; config: Config | null; }>; /** * Display error message when cursor-agent-only installation tries to use * registry commands. */ export declare const showCursorAgentNotSupportedError: () => void; //# sourceMappingURL=registryAgentCheck.d.ts.map