import type { Fix } from '../types/index.js'; export interface ApplyFixesResult { /** The fixed content, rejoined with the file's preferred line ending. */ content: string; /** Input fixes whose edit (or an identical/merged twin's) landed. */ applied: Fix[]; /** Input fixes dropped by overlap resolution or out-of-range lines. */ skipped: Fix[]; } export declare function applyFixesToContent(content: string, fixes: Fix[]): ApplyFixesResult; //# sourceMappingURL=auto-fix.d.ts.map