import type { Remote } from './remotes.js'; export declare const nfNamespace = "__NATIVE_FEDERATION__"; export type NfCache = { externals: Map; remoteNamesToRemote: Map; baseUrlToRemoteNames: Map; watchedBuildEndpoints: Set; }; export type Global = { [nfNamespace]: NfCache; }; export declare const globalCache: NfCache;