import type { CslItem } from "../../core/csl-json/types.js"; import type { ILibrary } from "../../core/library-interface.js"; import type { CheckResult } from "./types.js"; export interface FixInteractionResult { totalFindings: number; applied: number; skipped: number; removed: string[]; } export declare function runFixInteraction(results: CheckResult[], library: ILibrary, findItem: (id: string) => CslItem | undefined): Promise; //# sourceMappingURL=fix-interaction.d.ts.map