import type { App } from '@vuepress/core';
import type * as Config from 'webpack-chain';
import type { WebpackBundlerOptions } from '../types';
/**
 * Set webpack module to handle vue files
 */
export declare const handleModuleVue: ({ app, options, config, isServer, }: {
    app: App;
    options: WebpackBundlerOptions;
    config: Config;
    isServer: boolean;
}) => void;
