import type { Compiler } from '@rspack/core'; /** * The options for StartupChunkDependenciesPlugin */ interface StartupChunkDependenciesPluginOptions { /** * Specifies the chunk loading method * @defaultValue 'lynx' * @remarks Currently only 'lynx' is supported */ chunkLoading: string; /** * Whether to enable async chunk loading * @defaultValue true * @remarks Currently only async loading mode is supported */ asyncChunkLoading: boolean; } export declare class StartupChunkDependenciesPlugin { options: StartupChunkDependenciesPluginOptions; chunkLoading: string; asyncChunkLoading: boolean; constructor(options: StartupChunkDependenciesPluginOptions); apply(compiler: Compiler): void; } export {};