import { type Configuration } from '@rspack/core'; import type { Configuration as DevServerConfig } from '@rspack/dev-server'; export interface RspackConfigWithDevServer extends Configuration { devServer: DevServerConfig; } export declare function devConfig(workspaceDir: any, entryFiles: any, title: any): RspackConfigWithDevServer;