/*! * Copyright (c) Microsoft. All rights reserved. * Licensed under the MIT license. See LICENSE file in the project. */ import type { Configuration as WebpackConfiguration } from 'webpack'; import type { Configuration as WdsConfiguration } from 'webpack-dev-server'; import type { Configuration } from './types.js'; export declare function configure(config?: Configuration): WebpackConfiguration & { devServer: WdsConfiguration; };