import { Config, ScopeMap } from '../types';
interface CompareKeysOptions extends Pick<Config, 'unflat' | 'fileFormat' | 'addMissingKeys' | 'emitErrorOnExtraKeys' | 'translationsPath'> {
    scopeToKeys: ScopeMap;
}
export declare function compareKeysToFiles({ scopeToKeys, translationsPath, addMissingKeys, emitErrorOnExtraKeys, fileFormat, unflat, }: CompareKeysOptions): void;
export {};
