import { Config as Args } from '../commands/args'; import { ServerHooks } from '../Bundler'; export declare const devServerConfig: (hooks: ServerHooks, args: Args) => { publicPath: string; compress: boolean; clientLogLevel: string; contentBase: string; watchContentBase: boolean; hot: boolean; quiet: boolean; open: boolean; watchOptions: { ignored: any; }; overlay: boolean; host: string; port: number; historyApiFallback: { disableDotRule: boolean; }; before(app: any, server: any): void; after(app: any): void; };