import WebpackDevServer from 'webpack-dev-server'; interface Options { host: string; port: number; protocol: string; certificate: { keyPath: string; certPath: string; caPath: string; } | null; overlayEnabled: boolean; bundleAnalyzerEnabled: boolean; } export default function createDevServer(options: Options): Promise; export {};