/** * @purpose Converts a glob pattern to a RegExp for matching file paths. * Supports: ** (any depth), * (single segment), ? (single char), [abc] (char class). * @param pattern Glob pattern string. * @returns RegExp that matches paths against the pattern. */ export declare function globToRegex(pattern: string): RegExp; /** * @purpose Checks whether a file path matches any of the given glob patterns. * @param filePath Relative file path to check. * @param patterns Array of glob patterns (already compiled or string). * @param [compiled] Optional pre-compiled regexes for performance. * @returns True if the path matches any pattern. */ export declare function matchesAnyGlob(filePath: string, patterns: string[], compiled?: RegExp[]): boolean;