import { type LintDiagnostic } from '../diagnostic.js'; import { type OxlintProcessOptions } from './process.js'; export type OxlintResult = { diagnostics: LintDiagnostic[]; files: number; }; export declare function runOxlint(root: string, fix: boolean, options?: OxlintProcessOptions): Promise; //# sourceMappingURL=run.d.ts.map