import type { Compiler, RuntimeModule as RuntimeModuleType } from '@rspack/core'; interface PolyfillsRuntimeModuleConfig { polyfillPaths: string[]; } /** * Runtime module that requires polyfill entry modules before the startup * function (__webpack_require__.x), ensuring they run before Module Federation's * embed_federation_runtime wrapper. Polyfills go through the normal loader * pipeline as entry modules; this module only controls execution timing. */ export declare const makePolyfillsRuntimeModule: (compiler: Compiler, moduleConfig: PolyfillsRuntimeModuleConfig) => RuntimeModuleType; export {};