import { devServerOptionsType } from './types';
/**
 *
 * Get the devServer option from the user's compiler options
 *
 * @param {Object} compiler - webpack compiler
 * @param {Object} webpackArgs - webpack args
 *
 * @returns {Object}
 */
export default function getDevServerOptions(compiler: any): devServerOptionsType[];
