/** * Options for updating the config file. * * Since these are all string values, we can use null to mark them for removal */ type UpdateConfigOptions = { projectId?: string | null; _versionId?: string | null; _branchId?: string | null; stageTranslations?: boolean | null; }; /** * Update the config file version id, locales, and projectId (if necessary) * @param {string} configFilepath - The path to the config file. * @param {UpdateConfigOptions} options - The options to update the config file with. * @returns {Promise} - A promise that resolves when the config file is updated. * * Hint: Mark a field as null to remove it from the config file. */ export default function updateConfig(configFilepath: string, options: UpdateConfigOptions): Promise; export {};