import { InternalBasePlugin } from './base.js'; import { Plugin } from '@rsdoctor/types'; export declare class InternalRulesPlugin extends InternalBasePlugin { readonly name = "rules"; apply(compiler: Plugin.BaseCompiler): void; done: (stats: Plugin.BaseStats) => Promise; protected lint(compilation: Plugin.BaseCompilation): Promise; }