import { Matcher } from './Matcher'; import { MatchResult } from './MatchResult'; export interface ExactUrlPathnameMatcherInput { req: { url: string; }; } export declare type ExactUrlPathnameMatchResult = MatchResult<{ pathname: U[number]; }>; /** * Match exact urls */ export declare class ExactUrlPathnameMatcher implements Matcher, P> { private readonly urls; constructor(urls: U); match({ req }: P): ExactUrlPathnameMatchResult; }