import webpack from 'webpack'; export declare type ConfigurationContext = { rootDirectory: string; customAppFile: string | null; isDevelopment: boolean; isProduction: boolean; isServer: boolean; isClient: boolean; assetPrefix: string; sassOptions: any; productionBrowserSourceMaps: boolean; }; export declare type ConfigurationFn = (a: webpack.Configuration) => webpack.Configuration; export declare const pipe: (...fns: ((a: R) => R | Promise)[]) => (param: R) => R | Promise;