import type { Module } from 'webpack'; /** * @deprecated * * @param path {string} Example: sheets/Sheets * * window.__remotes__ = { * sheets: 'sheets@http://localhost:8082/sheets.js', * } * */ export declare function dynamicImport(path: string): Promise; /** * component: ./App * moduleName: example-app * moduleUrl: http://localhost:8082/example-app.js */ export declare function dynamicImportModule({ component, moduleName, moduleUrl, }: { component: string; moduleUrl: string; moduleName: string; }): Promise;