// Generated by dts-bundle v0.7.3 // Dependencies for this module: // ../../../../../../../packages/@rspack/core import type { Compiler } from "@rspack/core"; export type { PluginOptions }; /** * @typedef {Object} Options * @property {(string | RegExp | (string | RegExp)[] | null)=} include included resourcePath for loader * @property {(string | RegExp | (string | RegExp)[] | null)=} exclude excluded resourcePath for loader */ class ReactRefreshRspackPlugin { options: PluginOptions; static deprecated_runtimePaths: string[]; constructor(options?: PluginOptions); apply(compiler: Compiler): void; } export = ReactRefreshRspackPlugin; export type PluginOptions = { include?: string | RegExp | (string | RegExp)[] | null; exclude?: string | RegExp | (string | RegExp)[] | null; library?: string; forceEnable?: boolean; }; export function normalizeOptions(options: PluginOptions): PluginOptions;