import type { WebpackConfigMutator } from '@teambit/webpack'; export declare function addDevServer(configMutator: WebpackConfigMutator): WebpackConfigMutator; export declare function setOutput(configMutator: WebpackConfigMutator): WebpackConfigMutator; /** * Setting the webSocketURL to use port 0 * This is will make the dev server to use the same port as the website * This is mainly required for a cases when the port is forwarded to a different port * For example when using online vscode instances * @param configMutator * @returns */ export declare function setDevServerClient(configMutator: WebpackConfigMutator): WebpackConfigMutator; export declare function replaceTerserPlugin(): (configMutator: WebpackConfigMutator) => WebpackConfigMutator;