import webpack from 'webpack';
import { Express } from 'express';
declare const compilerRun: (compiler: webpack.Compiler) => Promise<unknown>;
declare const attachWebpackMiddleware: (app: Express) => Promise<any>;
export { compilerRun, attachWebpackMiddleware };