import { Compiler, WebpackPluginInstance } from 'webpack';
interface Options {
maxPrefetchAssetSize: number;
}
/**
* Generates a "catalyst.manifest.json" file with a list of files to preload
* (via``) and prefetch (via``).
*/
export default class CatalystManifestPlugin implements WebpackPluginInstance {
private readonly options;
constructor(options: Options);
apply(compiler: Compiler): void;
}
export {};