import { Match, Query } from '../../../common/types'; export declare const matchRouteCache: { cache: Map>; get(pathname: string, queryObj: Query, basePath: string): { route: T; match: Match; } | void; set(pathname: string, queryObj: Query, basePath: string, matchRoute: { route: T_1; match: Match; }): void; };