import { Configuration } from 'webpack'; interface OverrideWebpackConfigOptions { webpackConfig: Configuration; context: { env: "development" | "production"; paths: any; }; } declare const overrideWebpackConfig: ({ webpackConfig, context: { env: webpackEnv, paths }, }: OverrideWebpackConfigOptions) => Configuration; export { overrideWebpackConfig };