import { BundleOptions, ServiceOptions, ServiceType } from "@excitare/cli-types"; import webpack from "webpack"; export interface IConfiguration { entry: string; context: string; outputDir: string; outputName: string; name: string; rootDir: string; externals: string[]; bundleOptions: BundleOptions; iconOptions?: ServiceOptions.Icon & { inputDir: string; }; } declare type Mode = "development" | "production"; export declare function configureWebpack(mode: Mode, type: ServiceType, configuration: IConfiguration): webpack.Configuration; export {}; //# sourceMappingURL=index.d.ts.map