import { Updates, TranslateFlags } from '../types/index.js'; import type { ParsingConfigOptions, GTParsingFlags } from '../types/parsing.js'; import { InlineLibrary } from '../types/libraries.js'; /** * Searches for gt-react or gt-next dictionary files and creates updates for them, * as well as inline updates for tags and useGT()/getGT() calls * * @param options - The options object * @param sourceDictionary - The source dictionary file path * @param pkg - The package name * @returns An object containing the updates and errors */ export declare function createUpdates(options: TranslateFlags, src: string[] | undefined, sourceDictionary: string | undefined, pkg: InlineLibrary, validate: boolean, parsingFlags: GTParsingFlags, parsingOptions: ParsingConfigOptions): Promise<{ updates: Updates; errors: string[]; warnings: string[]; }>;