/**
 * Exclusion pattern matching
 * Pattern matching for exclude paths
 */
/**
 * Create exclusion matcher function from exclude patterns
 * @internal
 */
export declare function createExclusionMatcher(excludeRoutes?: readonly string[]): (_path: string) => boolean;
/**
 * Checks if a route path should be excluded based on exclude patterns
 * @internal
 */
export declare function isRouteExcluded(routePath: string, isExcluded: (_path: string) => boolean): boolean;
//# sourceMappingURL=exclusion-matcher.d.ts.map