import type { Tool } from '@wrongstack/core/types'; export type LinterName = 'biome' | 'eslint' | 'tslint' | 'auto'; export interface LintInput { files?: string | string[] | undefined; fix?: boolean | undefined; linter?: LinterName | undefined; cwd?: string | undefined; } export interface LintOutput { linter: string; files_checked: number; errors: number; warnings: number; output: string; fix_applied: boolean; truncated: boolean; } export type LintContext = Parameters['execute']>[1]; export declare const lintTool: Tool; //# sourceMappingURL=lint.d.ts.map