import * as pathToRegexp from "path-to-regexp";
export declare type ParamsMap = {
[key: string]: string | string[];
};
export declare function pathMatcher(pathPattern: string, pathToTest: string, options?: pathToRegexp.RegExpOptions): ParamsMap | false;