/**
 * Utility for matching URLs against patterns
 */
export declare class UrlMatcher {
    /**
     * Check if a URL matches a pattern
     * Supports exact matches, wildcards, and path parameters
     *
     * @param url URL to check
     * @param pattern Pattern to match against
     * @returns True if URL matches pattern
     */
    static match(url: string, pattern: string): boolean;
}
