import { RouteRegex } from './route-regex.js'; declare type RouteParams = { [paramName: string]: string | string[]; }; declare type RouteMatcherFunc = (pathname: string | null | undefined) => RouteParams | false; declare function getRouteMatcherFunc(routeRegex: RouteRegex): RouteMatcherFunc; export { RouteMatcherFunc, RouteParams, getRouteMatcherFunc };