export type Imports = Record; export type Scopes = Record; export type Integrity = Record; export type ImportMap = { imports: Imports; scopes: Scopes; integrity?: Integrity; }; /** * @deprecated This package has reached end-of-life and is no longer maintained. * Please switch over to the @softarc/native-federation-orchestrator library. */ export declare function mergeImportMaps(map1: ImportMap, map2: ImportMap): ImportMap;