import 'systemjs/dist/s.js'; import 'systemjs/dist/extras/named-register.js'; import 'systemjs/dist/extras/amd.js'; export interface Externals { readonly [externalName: string]: unknown; } /** * @param externals An object with shared npm dependencies that the integrator * wants to provide to Feature Apps. The keys are the names of the dependencies * that are used in import/require statements. The values are the modules. */ export declare function defineExternals(externals: Externals): void; /** * @param url A URL pointing to a bundle that was built as an AMD or UMD module. * * @returns A promise that resolves with the loaded module, or is rejected if * the module can not be loaded. */ export declare function loadAmdModule(url: string): Promise; //# sourceMappingURL=index.d.ts.map