import type { FileFixFunction } from '../../../../../../domain.objects'; /** * fix contains json by replacing and adding key values * - replaces keys in place (order not change) * - adds keys to the end (note: folks should specify a check that checks order if it matters, and have that check fix things) * - omits self-deps to prevent circular dependency errors */ export declare const fixContainsJSONByReplacingAndAddingKeyValues: FileFixFunction;