/** * Registry authentication module * Uses the same refresh token as Watchtower (unified Nori auth) */ import type { RegistryAuth } from "../cli/config.js"; /** * Get auth token for a registry using the unified Nori refresh token * @param args - The authentication parameters * @param args.registryAuth - Registry authentication credentials (must have refreshToken) * * @returns The Firebase ID token */ export declare const getRegistryAuthToken: (args: { registryAuth: RegistryAuth; }) => Promise; /** * Clear the registry auth cache * Useful for testing */ export declare const clearRegistryAuthCache: () => void; //# sourceMappingURL=registryAuth.d.ts.map