import { Linter } from 'eslint'; /** * Merge multiple processors into one * * @param processors */ declare function mergeProcessors(processors: Linter.Processor[]): Linter.Processor; /** * Pass-through the file itself */ declare const processorPassThrough: Linter.Processor; export { mergeProcessors, processorPassThrough };