import * as webpack from "webpack"; //#region src/webpack.d.ts interface Bundle { id: string | number; name: string | null; file: string; publicPath: string; } interface Manifest { [moduleId: string]: Bundle[]; } interface ReactLoadablePluginOptions { filename: string; } declare class ReactLoadablePlugin implements webpack.WebpackPluginInstance { filename: string; constructor(opts?: ReactLoadablePluginOptions); apply(compiler: webpack.Compiler): void; } declare function getBundles(manifest: Manifest, moduleIds: (string | number)[]): Bundle[]; //#endregion export { Bundle, Manifest, ReactLoadablePlugin, ReactLoadablePluginOptions, getBundles };