import type { InitializationStatus } from './boilerplateTemplates'; /** * Parameters controlling one string-record merge into a JSON file. */ type MergeStringRecordJsonFileOptions = { readonly projectPath: string; readonly relativeFilePath: string; readonly fieldPath: string; readonly nextEntries: Readonly>; readonly ensureParentDirectoryPath?: string; }; /** * Ensures one JSON object field contains the provided string-record entries. * * @private function of `initializeCoderProjectConfiguration` */ export declare function mergeStringRecordJsonFile({ projectPath, relativeFilePath, fieldPath, nextEntries, ensureParentDirectoryPath, }: MergeStringRecordJsonFileOptions): Promise; export {};