import { ActionFactory } from './factory'; import { IKeys, IOpts as ILintOpts } from 'ko-lints'; import Service from '../core/service'; declare class LintFactory extends ActionFactory { private name; constructor(service: Service, name: IKeys); generateConfig(): {}; registerCommand(): void; protected action(patterns: string | string[], cliOpts: ILintOpts): Promise; } export default LintFactory;