import { HttpRequest } from '@angular/common/http'; import { Matcher } from './service'; export declare const matchWithBody: (body: T) => Matcher; export declare const matchWithBodyMatcher: (fn: (body: T) => boolean) => Matcher; export declare const matchWithHeader: (name: string, val?: string) => Matcher; export declare const matchWithMethod: (method: string) => Matcher; export declare const matchWithUrl: (url: string | RegExp) => Matcher; export declare const matchWithParam: (name: string, val?: string) => Matcher; export declare const matchAll: (...matchers: Matcher[]) => (req: HttpRequest) => boolean; export declare const matchAny: (...matchers: Matcher[]) => (req: HttpRequest) => boolean;