import { Updates } from '../../types/index.js'; import type { ParsingConfigOptions, GTParsingFlags } from '../../types/parsing.js'; import { GTLibrary } from '../../types/libraries.js'; import { dedupeUpdates } from '../../extraction/postProcess.js'; export declare function createInlineUpdates(pkg: GTLibrary, validate: boolean, filePatterns: string[] | undefined, parsingFlags: GTParsingFlags, parsingOptions: ParsingConfigOptions): Promise<{ updates: Updates; errors: string[]; warnings: string[]; }>; export { dedupeUpdates as _test_dedupeUpdates };