/** * CLI command for updating installed profile packages from the Nori registrar * Handles: nori-ai registry-update [--registry ] */ import { type CliName } from "../../../cli/commands/cliCommandNames.js"; import type { Command } from "commander"; /** * Update an installed profile to the latest version from the registrar * @param args - The update parameters * @param args.profileName - Profile name to update * @param args.cwd - Current working directory (defaults to process.cwd()) * @param args.installDir - Optional explicit install directory * @param args.registryUrl - Optional registry URL override (uses stored registry URL if not provided) * @param args.cliName - CLI name for user-facing messages (nori-ai or nori-skillsets) */ export declare const registryUpdateMain: (args: { profileName: string; cwd?: string | null; installDir?: string | null; registryUrl?: string | null; cliName?: CliName | null; }) => Promise; /** * Register the 'registry-update' command with commander * @param args - Configuration arguments * @param args.program - Commander program instance */ export declare const registerRegistryUpdateCommand: (args: { program: Command; }) => void; //# sourceMappingURL=registryUpdate.d.ts.map