import type { LinterOptions } from '@moneko/stylelint'; import { type Compiler } from 'webpack'; export interface StylelintOption extends LinterOptions { files: string[]; } export declare class StylelintPlugin { private name; private worker; private options; constructor(options?: StylelintOption); apply(compiler: Compiler): void; private report; }