import { Compiler } from 'webpack'; export default class NpmPackPlugin { private options; constructor(options: { name: string; environment: string; rootPath: string; packagesPath: string; dependencies?: string[]; getVersion?: () => string; }); apply(compiler: Compiler): void; private packDependencies; }