import MiniCssExtractPlugin = require("mini-css-extract-plugin"); export const mode: string; export const entry: { 'react-awesome-button': string[]; }; export const devtool: string; export namespace resolve { const extensions: string[]; } export namespace module { const rules: ({ test: RegExp; use: string; exclude: RegExp; loader?: undefined; options?: undefined; } | { test: RegExp; exclude: RegExp; loader: string; options: { presets: string[]; }; use?: undefined; } | { test: RegExp; use: (string | { loader: string; options?: undefined; } | { loader: string; options: { modules: { localIdentName: string; }; }; })[]; exclude?: undefined; loader?: undefined; options?: undefined; })[]; } export const plugins: MiniCssExtractPlugin[]; export namespace performance { const hints: boolean; const maxEntrypointSize: number; const maxAssetSize: number; } export namespace devServer { export namespace _static { const directory: string; } export { _static as static }; export const port: number; export const historyApiFallback: boolean; }