import type { Input } from './types.js'; export type InternalLintResult = { ok: boolean; fixable: boolean; annotations?: Array<{ start_line?: number; end_line?: number; path: string; message: string; }>; }; export declare const internalLint: (mode: "format" | "lint", input?: Input) => Promise;