/** * Cross-runtime glob pattern matcher. * Uses Bun.Glob when available (3x faster), otherwise falls back to a minimal implementation. */ declare global { const Bun: { Glob?: new (pattern: string) => { match(path: string): boolean; }; } | undefined; } /** * Creates a function that tests if a path matches a glob pattern. * Supports common glob patterns: *, **, ?, [abc], [a-z], {a,b} * * @param pattern - The glob pattern to match against * @returns A function that tests paths against the pattern */ export declare function createMatcher(pattern: string): (path: string) => boolean; /** * Legacy compatibility function to match picomatch API. * Creates a matcher function from a pattern. * * @param pattern - The glob pattern * @returns A function that tests paths against the pattern */ export default function picomatch(pattern: string): (path: string) => boolean; //# sourceMappingURL=glob-matcher.d.ts.map