import type * as Config from 'webpack-chain';
import type { WebpackBundlerOptions } from '../types';
/**
 * Set webpack module to handle js files
 */
export declare const handleModuleJs: ({ options, config, isServer, isBuild, }: {
    options: WebpackBundlerOptions;
    config: Config;
    isServer: boolean;
    isBuild: boolean;
}) => void;
