import * as webpack from "webpack"; import { PluginOptions } from "./yarn-check"; declare class YarnCheck implements webpack.Plugin { private options; constructor(options?: PluginOptions); apply: (compiler: webpack.Compiler) => void; private perform; } export { YarnCheck };