import webpack = require('webpack'); import { Configuration } from 'webpack-dev-server'; export declare namespace IVLocal { interface WebpackConfig extends webpack.Configuration { devServer?: Configuration; } interface Hook { (config: Configuration, err: Error): void; } interface ILocalServerConfig extends Configuration { hooks?: Hook[]; } }