import { Compiler } from 'webpack'; export declare type WatchCompiler = { watch: () => void; pause: () => void; getWatchOptions: () => { aggregateTimeout: number; ignored?: RegExp | string; poll?: number | boolean; }; }; export default function createWatchCompiler(compiler: Compiler, watchOptions: {}): WatchCompiler;