import { IBgxHttpInterceptorMapping } from './http-interceptor-mapping.interface'; import { IBgxHttpInterceptorMatcher } from './http-interceptor-matcher.interface'; /** * Concrete implementation for http interceptor matchers. * This implementation uses regex to check mapping paths vs request url. */ export declare class BgxURLRegExpInterceptorMatcher implements IBgxHttpInterceptorMatcher { matches(options: { url: string; }, mapping: IBgxHttpInterceptorMapping): boolean; }