/** * Tiny key-glob matcher shared by the translation audit (`ignoreKeys`) and the * unused-key reconciler (`dynamicKeys`/`ignoreKeys`). Supports exact keys and a * trailing `*` wildcard, so `errors.*` matches `errors.timeout` but not `errorsX` * is intentional — `errors.*` slices to the prefix `errors.` (the dot is kept). */ export declare function makeGlobMatcher(patterns: string[] | undefined): (key: string) => boolean;