import type webpack from 'webpack'; export interface ICopyReleaseAssetsPluginOptions { releasePath: string; isDebug?: boolean; assetsFolderName?: string; manifestsFolderName?: string; /** * If true, will copy the `.map` files to release even in production mode */ releaseMapFiles?: boolean; } export declare class CopyReleaseAssetsPlugin implements webpack.WebpackPluginInstance { private _options; constructor(options: ICopyReleaseAssetsPluginOptions); apply(compiler: webpack.Compiler): void; } //# sourceMappingURL=CopyReleaseAssetsPlugin.d.ts.map