import type { Compiler, Stats } from 'webpack'; export type DoneCallback = (stats: Stats) => void; export declare class DonePlugin { private name; private options; constructor(options: { done: DoneCallback; }); apply(compiler: Compiler): void; } export type DonePluginOption = ConstructorParameters[0]['done'];