import { Settings } from '../types/index.js'; import { FileReference } from 'generaltranslation/types'; /** * Collects local user edits by diffing the latest downloaded server translation version * against the current local translation file, and submits the diffs upstream. * * Must run before enqueueing new translations so rules are available to the generator. */ export declare function collectAndSendUserEditDiffs(files: FileReference[], settings: Settings): Promise;