export interface DevPluginOptions { appDir: string; baseDir?: string; basePath?: string; watch?: { include?: RegExp[]; exclude?: RegExp[]; }; getRequestHandler?: (app: any) => (req: any, res: any, next?: (err?: unknown) => void) => any; } export declare function devPlugin(options: DevPluginOptions): { name: string; apply(compiler: any): void; }; //# sourceMappingURL=rspack.d.ts.map