import webpack from 'webpack'; import { ForkTsCheckerWebpackPluginOptions } from './ForkTsCheckerWebpackPluginOptions'; import { Pool } from './utils/async/pool'; declare class ForkTsCheckerWebpackPlugin implements webpack.Plugin { /** * Current version of the plugin */ static readonly version: string; /** * Default pools for the plugin concurrency limit */ static readonly issuesPool: Pool; static readonly dependenciesPool: Pool; /** * @deprecated Use ForkTsCheckerWebpackPlugin.issuesPool instead */ static get pool(): Pool; private readonly options; constructor(options?: ForkTsCheckerWebpackPluginOptions); static getCompilerHooks(compiler: webpack.Compiler): { start: import("tapable").AsyncSeriesWaterfallHook; waiting: import("tapable").SyncHook; canceled: import("tapable").SyncHook; error: import("tapable").SyncHook; issues: import("tapable").SyncWaterfallHook; }; apply(compiler: webpack.Compiler): void; } export { ForkTsCheckerWebpackPlugin };