//#region src/utils/watchPaths.d.ts
/**
 * Build a predicate that tells whether an absolute file path emitted by
 * chokidar matches any of the given globs. Patterns are interpreted as
 * project-relative; a leading `./` is stripped so user-supplied globs like
 * `./locales/**` behave identically to `locales/**`.
 */
declare function createWatchedFileMatcher(patterns: string[], cwd: string): (file: string) => boolean;
//#endregion
export { createWatchedFileMatcher };
//# sourceMappingURL=watchPaths.d.ts.map