import { ESLint } from '@moneko/eslint'; import { type Compiler } from 'webpack'; export interface ESLintOption extends ESLint.Options { files: string[]; lintDirtyModulesOnly?: boolean; } export declare class ESLintPlugin { private name; private worker; private options; constructor(options?: ESLintOption); apply(compiler: Compiler): void; private report; }