import { Command } from "commander"; export type Severity = "error" | "warning"; export interface LintViolation { file: string; line: number; rule: string; severity: Severity; message: string; fixable: boolean; } export interface LintResult { violations: LintViolation[]; filesChecked: number; fixed: number; } export declare function lintSkillDir(dir: string, options?: { fix?: boolean; }): LintResult; export declare const lintCommand: Command; //# sourceMappingURL=lint.d.ts.map