import type { LintResults } from "../reporting/types.js"; export interface LintOptions { rootPath: string; /** Path to a known-domains file for reference scanning. When provided, URLs * in skill files are checked against this list. */ knownDomainsFile?: string; /** Path to an allowed-external-deps file. When provided, skills are checked * for structural external dependencies (scripts, tool references). */ allowedExternalDepsFile?: string; } /** * Run the lint pipeline: discover → parse → grade → collect results. * * Registers the built-in graders that `vally lint` runs by default. */ export declare function runLint(options: LintOptions): Promise; //# sourceMappingURL=lint.d.ts.map