/** * Registry authentication prompt for installation * Collects private registry credentials during install */ import type { RegistryAuth } from "../../../cli/config.js"; /** * Prompt user for private registry authentication credentials * @param args - Configuration arguments * @param args.existingRegistryAuths - Existing registry auths from config (if any) * @param args.watchtowerAuth - Nori auth credentials to reuse (if any) * * @returns Array of RegistryAuth objects, or null if user declines */ export declare const promptRegistryAuths: (args: { existingRegistryAuths?: Array | null; watchtowerAuth?: { username: string; password: string; } | null; }) => Promise | null>; //# sourceMappingURL=registryAuthPrompt.d.ts.map